Show Group Depending on DropDown

1218
2
Jump to solution
02-08-2017 02:47 AM
JohnMcConalogue
New Contributor III

I have 4 groups, 1-4.

I also have a dropdown with 3 values, A,B,C

I want that only groups 1-3 appear when I select either A or B from the dropdown. But I want all 4 groups to appear if I select C.

In the 'relevant' field can I add ${dropdown='A' Or dropdown='B'}   ?

I know I can add the first bit but can the part in red be used also?

Thanks.

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
JamesTedrick
Esri Esteemed Contributor

Yes, you can accomplish what you're wanting, though it's a little different than what you typed above.  The correct relevant statement would be:

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

The ${question_name} parts of the equation essentially mean 'the question/field with the name question_name'.  Also note that 'or' (as is 'and', 'not', and other function terms) are case sensitive -they need to be lower-cased.

Find attached a form that essentially accomplishes what you're specifying.

View solution in original post

0 Kudos
2 Replies
JamesTedrick
Esri Esteemed Contributor

Yes, you can accomplish what you're wanting, though it's a little different than what you typed above.  The correct relevant statement would be:

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

The ${question_name} parts of the equation essentially mean 'the question/field with the name question_name'.  Also note that 'or' (as is 'and', 'not', and other function terms) are case sensitive -they need to be lower-cased.

Find attached a form that essentially accomplishes what you're specifying.

0 Kudos
JohnMcConalogue
New Contributor III

Thanks James.

0 Kudos