I need to hide a field if conditions are not met in two fields with multiple options in one of the fields. So, if a value exists in FieldA (true) then hide FieldC, or if FieldB does not equal “sample1”, or if FieldB does not equal “sample2”, or if FieldB does not equal “sample3” then FieldC should also hide.
I tried the following but it doesn’t seem to work:
Subject: RE: Hide Formula: Multiple Evaluation Problem
The expression FieldB != “sample1”:“sample2”:“sample3” means, FieldB != “sample1” or FieldB != “sample2” or FieldB != “sample3” (assuming FieldB is a scalar).
What you want instead is:
!(FieldB = “sample1”:“sample2”:“sample3”)
Do not use @Contains as Thiyagarajan suggested; it doesn’t do what you want. You could do it with @IsMember.