Relevant Expression

1678
2
Jump to solution
02-13-2017 06:58 AM
JohnMcConalogue
New Contributor III

I have a drop-down containing two values, A and B.

When I select one of the values I want another drop-down to appear. In other words I want to make the drop down appear if the relevant expression is not empty.

Thanks.

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
CarmelConnolly3
Occasional Contributor II

Hi John,

Have you taken a look at the help here: https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformrelevant.htm ?

You could use either of these in the relevant column:

${PreviousQuestionName} != '' 

${PreviousQuestionName} = 'A' or ${PreviousQuestionName} = 'B'

Both of those mean the next question will only appear if an answer is selected.

Carmel

View solution in original post

2 Replies
CarmelConnolly3
Occasional Contributor II

Hi John,

Have you taken a look at the help here: https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformrelevant.htm ?

You could use either of these in the relevant column:

${PreviousQuestionName} != '' 

${PreviousQuestionName} = 'A' or ${PreviousQuestionName} = 'B'

Both of those mean the next question will only appear if an answer is selected.

Carmel

JohnMcConalogue
New Contributor III

Thanks for the reply Carmel.

0 Kudos