Hi All, Hopefully a simple one for the experts (I am new in town). I have a form with a choice drop down. I have a hidden panel which appears if a certain choice is selected i.e. if contains "X". What i cannot achieve is making it appear if contains "X" or "Y"? Any ideas guys? Thanks, Andy.
Solved
Hide Controls Based based on Choice
Best answer by allan
Let's think it that way : In which case do you want to panel to appear ?
When creating a rule, you specify when to hide controls. Hiding is just the opposite of displaying.
You want your panel to be displayed when Classification=='Unclassified' or when Classification=='Private'
-->
Classification=='Unclassified' || Classification=='Private'
So the opposite of that is :
NOT(Classification=='Unclassified' || Classification=='Private')
That would be your rule.
Do not forget your "empty" case. What should happen if nothing is selected ?
So I suspect your rule would be
NOT(Classification=='Unclassified' || Classification=='Private') || isNullOrEmpty(Classification)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.