I can't seem to find the answer to this.
I have a form, I want to hide a field unless one of these four of the seven total choices in a drop down is selected.
For example, I want the field to show if the user selects:
Item 1
Item 3
Item 5
Item 7
But not show if the user selects:
Item 2
Item 4
Item 6
I know how to use If(DataItem = "Item 1", true,false) but when I try to list out the items in this formula, I get a warning that says "Expecting a true or false value. The current value may cause unexpected behavior."