Answered

Conditional Logic with multiple selection

  • 25 July 2023
  • 2 replies
  • 135 views

I am working on a logic for a multiple selection question:
If X is selected, go to Question 1
If Y is selected, go to Question 2
If Z is selected, go to Question 3

The problem is that when I only select X, the form still takes me to Questions 2 and 3. What is the issue here?

icon

Best answer by john.desborough 25 July 2023, 18:50

View original

2 replies

Userlevel 7
Badge +6

@webward3 - on question 1, you will have to include ‘routing’ in a logic rules like this:

  • if Y is selected go to q2
  • if z is selected go to q3 
  • otherwise go to ending/etc

on q2 you will have to add the rules:

  • if Z is selcted go to q3
  • otherwise go to ending/etc

you need to ‘stairstep’ your logic to go where the user should be pointed

 

des

Thanks @john.desborough! That helped.

Reply