I’ve tried everything, and read/ watched numerous videos trying to get this to work.
I have a simple form that requires a user to select 2 of 3 options: Hat, T-Shirt, Polo Shirt.
User then selects 1 or 2 of the three items. Next they need to pick a size (Hats have 2 sizes; T-shirts have 4 sizes, and Polos have 5 sizes.
Can anyone help me out with this? Thanks in advance.
Best answer by john.desborough
@Gabriel Lefrancois - let me take a stab at what i think you are trying to accomplish, using the sort of structure for the logic rules
- q1 select (2 max) of the three options - A = hat, B = tshirt C= polo
- logic rules on this question
- if q1 = A then go to q2
- if q1 = B then go to q3
- if q1 = C then go to q
- q2 select (1 max) of two hat sizes - H1 or H2
- logic rules on this question
- if q1 = B then go to q3
- if q1 = C then go to q4
- else go to ending or appropriate next page
- q3 select (1 max) of 4 tshirt sizes - T1, T2, T3, T4
- logic rules on this question
- if q1 = C then go to q4
- else go to ending or appropriate next page
- q4 select (max 1) of 5 polo sizes - P1, P2, P3, P4, P5
- logic rules on this question
- always go to ending or appropriate next page
that should take you to where you want to go.. at least the way i read it
des
View original