Multiple values in relevant column

2364
3
02-20-2020 05:24 PM
JessikaMcFarland
New Contributor

Hi all,

I am trying to use the relevant column to show questions that are dependent on certain values in a drop down list. Interns will be collecting information for various plant species, and will select one species at a time, but multiple species codes necessitate a new field that I hope to keep hidden unless that species is selected.

For example, we have codes such as ALRU2_S1, ALRU2_S2, and ALRU2_S3 to indicate different sizes of red alder seedlings. I'm hoping to keep the "Count" field hidden unless a seedling code is entered.

I've had a lot of success with the following, which is currently working for one value at a time:

selected(${species}, 'ALRU2_S1') 

I am wondering how to add multiple values in this syntax so that the seedling count field pops up for more than one species code, if that is not within Survey123 limitations. 

Thanks!

Jessika

0 Kudos
3 Replies
DougBrowning
MVP Esteemed Contributor

Just put an or between them

selected(${species}, 'ALRU2_S1') or selected(${species}, 'ALRU2_S2')  etc

jzibbell_boise
New Contributor III

Can I do an ${field}="answer" and (${field2}="answer" or ${field3} = "answer"). So the first condition has to be true but the last two either can be true.

BE4
by
New Contributor II

Any Update on this?

0 Kudos