One panel need to be show/hide based on selections " Type", if select "New", "Remove", " And" show, selection other one, two, three hide. I applied rule ChangeType!='New' or not (contains(Type, "New")), it works for " New" only, then I applied 2nd rule ChangeType! ='Remove', both New and Remove not working, I tried to use or(ChangeType!='New'||
ChangeType!='Remove'), also not woking, still need 3rd selections?
Solved! Go to Solution.
single rule below works
ChangeType!='Remove'
But added OR not working
ChangeType!='New' || ChangeType!='Remove' || ChangeType!='And'
Is there anything wrong?
Hi,
You can do this one of two ways.
You can use multiple rules on the one panel or one rule on the panel.
Create 3 rules. One for selection "One" One for "Two".......
equals(ChangeType,"One"),
The one rule option looks like:
or(or(equals(ChangeType,"One"),equals(ChangeType,"Two")),equals(ChangeType,"Three"))
This will hide the panel when you select One,Two or Three.
I have attached sample classic forms that you can import and test.