Hey! I need help with the logic for a form. I need to make the logic in such a way that in the question, if the user selects several categories at once (from 1 to 5 in total), he is led to the desired question according to this category. That is, if he chooses all 5 options, then he needs to go through the next 5 questions to these categories. And so it can be with 4 questions, and with 3, etc. There is only one ending for this form. How can this be implemented? Or will it be necessary to describe each option in a separate logic?
Answered
There could be a lot of different options since they can pick anywhere from 1 to 5 of the categories.
Best answer by john.desborough
- create the question groups that you need - i will use 2-5 for this example:
- logic rule on q1 (the main multiple multiple choice question)
- if q1=a then jumpto qgroup2
- if q1=b then jumpto qgroup3
- if q1=c then jumptio qgroup4
- if q1=d then jumpto qgroup5
- otherwise jumpto end
- that will determine the start point
- on qgroup2 (the first question group) on the last question in the group, here’s the logic
- if q1=b then jumpto qgroup3
- if q1=c then jumptio qgroup4
- if q1=d then jumpto qgroup5
- otherwise jumpto end
- that will determine where it should go
- on group3 the logic on the last question in the group would be:
- if q1=c then jumptio qgroup4
- if q1=d then jumpto qgroup5
- otherwise jumpto end
- on group4 the logic is
- iif q1=d then jumpto qgroup5
- otherwise jumpto end
cheers
des
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.