I’m building a questionnaire with 2 multiple-choice questions, and I want to short the answers of 2nd question based on 1st question’s choices.
For examble:
Select_mutiple Q1: what’s your position: A B C
Select_mutiple Q2: What do your need : x y z t, other
What I want in Q2:
show x, y, other if q1 = A,
show y, z, other if q1 = B,
show x, t, other if q1 = C,
show x, y, t, other if q1 = A & C,
show x, y, z, t, other if q1 = A, B and C
What should it show if A & B are selected in Q1? Similarly, what should it show if B & C are selected in Q1? It seems like these two conditions are missing too.