I'm trying to construct an expression for the body::esri:visible column to hide a question group if the response to a previous question is one of several possible values. First the user selects a Facility Profile from a select_one question. Then if that selected Facility Profile is 5, 6, 7, or 8, then hide a question group. (These values are actually text strings in my survey)
I can get ${FacilityProfile}!='5' to work, but how can I make an expression along the lines of ${FacilityProfile} not in ('5'.'6','7','8') to work?