Conditional Logic with multiple selection | Community
Skip to main content
Answered

Conditional Logic with multiple selection


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?

Best answer by john.desborough

@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

View original

john.desborough
Forum|alt.badge.img+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


  • Explorer
  • July 25, 2023

Thanks @john.desborough! That helped.


Reply