Hello all. Been banging my head against a wall and would greatly appreciate any assistance. I have a form panel that needs to be hidden with a variety of AND and OR.
Fields:
QuantityNamedControl = Number column
UnknownQuantityNamedControl = Yes/No named control not connected to a column
ChoiceNamedControl = Choice column
I need to only show the panel in the following conditions:
1) QuantityNamedControl is greater than 42
2) UnknownQuantityNamedControl is checked
3) QuantityNamedControl is greater than 4 AND ChoiceNamedControl is Yes
Rule I've tried: Hide when
or(lessThan(QuantityNamedControl,42),not(UnknownQuantityNamedControl),and(lessThan(QuantityNamedControl,4),!equals(ChoiceNamedControl,'Yes')))
I've also tried this using && and ||, all with very strange behavior. The OR seems to be behaving as an AND, and the AND at the end containing the choice doesn't work at all. Thanks in advance for any input.