Select to view content in your preferred language

selected function in relevant field for multiple selection

300
2
Jump to solution
04-29-2026 10:28 AM
dsinha
by
Frequent Contributor

Hello all,

I am trying to make certain form questions appear based on whether one of three options is selected in a previous select_one question.

This is the expression I am using in the relevant column:

selected(${work_type},'curb_program,curb_permit,streetcut_permit')

where curb_program, curb_permit and streetcut_permit are three of the four choices available in the previous select_one question.

However, the questions attached to the relevant expressions are not appearing when choosing one of the three choices in the select_one question.

What am I doing wrong?

Thanks in advance!

0 Kudos
1 Solution

Accepted Solutions
Neal_t_k
MVP Regular Contributor

selected(${work_type},'curb_program') or selected(${work_type},'curb_permit') or selected(${work_type},'streetcut_permit')

View solution in original post

2 Replies
Neal_t_k
MVP Regular Contributor

selected(${work_type},'curb_program') or selected(${work_type},'curb_permit') or selected(${work_type},'streetcut_permit')

dsinha
by
Frequent Contributor

Thanks @Neal_t_k!

0 Kudos