Visiblity Conditions

Is it possible to add both ‘AND’ and ‘OR’ in the visibility condition.
Like (‘A’ and ‘B’) or ‘C’
show component when A and B exist or show when only ‘C’ exist.

What about ‘if then else’ condition also? Can we create one for visibility?

You can do this with an if-then-else column:

  • If C is true, then true
  • If A is not true, then false
  • If B is not true, then false
  • Else true
1 Like

I need to filter like this

If ‘signed in user’ is name1 then show A
If ‘signed in user’ is name2 then show B
else show C

Are you filtering, or wanting to set visibility conditions?