Answered

Struggling with multi answer logics

  • 11 September 2022
  • 1 reply
  • 23 views

Hello guys. I am having issues that are already melting my brain with typeform. Currently, I am creating a multi select question for social media. It goes like this:

However, if someone only chooses YouTube let’s say, the form always go through the other social media. What I am struggling with, is that when a client let’s say chooses instagram and Facebook for example, I want it to jump to the next question, and not go through the other social media. My current logic is this:

How to set up a logic in which the client goes from their answers to the next question? Been struggling with it for some time. Hope I made myself understand, thank you!

icon

Best answer by john.desborough 11 September 2022, 13:20

View original

1 reply

Userlevel 7
Badge +6

@Filipe - in essence you need to put logic something like this in your questions: 

 

on q2:

  • if q2 = A then go to q3
  • if q2 = B then go to q4
  • if q2 = C then go to q5
  • if q2 = D then go to q6
  • if q2 = E then go to q7

that will jump you to the first item they choose as the starting point 

on q3:

  • if q2 = B then go to q4
  • if q2 = C then go to q5
  • if q2 = D then go to q6
  • if q2 = E then go to q7

on q4:

  • if q2 = C then go to q5
  • if q2 = D then go to q6
  • if q2 = E then go to q7

on q5:

  • if q2 = D then go to q6
  • if q2 = E then go to q7

on q6L

  • if q2 = E then go to q7

note that the logic is all based on the response in q2

here’s a short example that i did a while back that uses question groups for answers based on the multiple possible selections in the product selection. 

 

des

Reply