I am trying to get groups to display based on a select multiple question. If the user selects a Module, I want the group associated with that module to be available to the user. The issue I am having is when I set up one relevant statement it works, but when I have multiple relevant statements, the groups disappear. What am I doing wrong?
Working with one relevant statement:
Not working with multiple relevant statements:
Notice the pages decrease when multiple are checked
Solved! Go to Solution.
Hi,
When you want to do calculations based on a select multiple question you want to use the "selected" function here:
as the way data is stored in a select multiple question is all of the options selected concatenated with a ',', which means your relevant calculations are failing when multiple are selected because it's equating to '"data_library,stablization" = "stablization"' which will return as false.
Hope this helps!
Hi,
When you want to do calculations based on a select multiple question you want to use the "selected" function here:
as the way data is stored in a select multiple question is all of the options selected concatenated with a ',', which means your relevant calculations are failing when multiple are selected because it's equating to '"data_library,stablization" = "stablization"' which will return as false.
Hope this helps!
@JoshuaSharp-Heward that worked. Thank you for your help, much appreciated!