I have a survey with 3 notes to return statements based on a user selection. One note is 1:1 relationship. The other is 2:1 relationship. For the third note, I want to return all other choices. There are over 60 choices so I do not want to write out ${field}='choice_name' or 60+ times.
I would like to say 'target is not situational briefings or Short_Term_Unemployed_and_Underemployed or Short_Term_Unemployed_and_Underemployed’
I tried this but it doesn't work: ${target} != 'Situational_Briefings' or ${target} != 'Short_Term_Unemployed_and_Underemployed' or ${target} != 'Long_Term_Unemployed_and_Underemployed'
Solved! Go to Solution.
I think you want an and instead of or in your statement?
I think you want an and instead of or in your statement?
@Katie_Clark that worked, thank you!