I am creating a nomination form and each of 5 awards has a different set of questions that should only be visible when the user selects that particular award. Easy. But - the stakeholders want users to be able to submit one recipient for multiple awards, i.e. volunteer, staff, neighbor - so they could select volunteer and neighbor and those subsets of questions would appear. I'm stuck because instead of NomType2.Value=="Neighbor" I need something like Contains "Neighbor" - so Neighbor results would show when selected with any of the other 4 options. Users can select up to all 5 options. Thanks in advance!
Yes, you can use exactly what you typed:
NomType2.Value.Contains("Neighbor")
Thanks Jan! It works like a charm.
Please, sign in to be able to submit a new answer.