How to hide related items

Hi,

I would like to hide all related items from detail view

I know that I can do it by Show-If=false, but to make it work I need to enable “Apply show-if constraints universally” witch I don’t want.

Is there any other way to hide all related items?

Thanks for your time

Solved Solved
1 4 159
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4
4 REPLIES 4

You could use the Context() function in your showif formula to check if you’re on a specific view.

It would look something like this

Context(“View”) = “name of the view you want it to show up in”

Use that in your showif formula for the field.

You could also use it in an OR function to check for more than one view.

Or(Context(“View”) = “view1”,Context(“View”) = “view2”))

And I use the formula in showif of virtual column of related items? Of yes, it did not work for me.
It works when I turn “Apply show-if constraints universally” on, but not without it.

Steve
Platinum 4
Platinum 4

Amazing, thank you Steve!

Top Labels in this Space