Hiding a group of questions after a conditional select_multiple question

255
1
Jump to solution
2 weeks ago
MarkWalker3
New Contributor

MarkWalker3_0-1714660984074.png

I created a variable called PSRP_check in order to hide my group of conditional questions later. This solution worked within the Survey123 app, but if I open the survey online, none of the questions that have ${PSRP_check}='1' in the relevant section are hidden. Unfortunately, the survey is meant to be taken as a web survey and I'm not sure how to fix this issue.

0 Kudos
1 Solution

Accepted Solutions
DougBrowning
MVP Esteemed Contributor

Your syntax is incorrect.  It is just selected() which returns a true or false.  You do not do selected()=true. 

Really good reference is here https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm 

Note you could also same some fields and do if(selected() or selected() when they are the same like lines 9 and 10.

View solution in original post

1 Reply
DougBrowning
MVP Esteemed Contributor

Your syntax is incorrect.  It is just selected() which returns a true or false.  You do not do selected()=true. 

Really good reference is here https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm 

Note you could also same some fields and do if(selected() or selected() when they are the same like lines 9 and 10.