Hello, I am new here and from the Netherlands, so some technical explainations I find hard to understand sometimes, sorry!
I have made a quiz, where people mostly can answer with yes or no. I would like to give three possible outcomes: less then 10 x yes → this outcome, less then 20 x yes → this outcome, less then 30 x yes → this outcome.
How do I do that? Thank you so much!
Best answer by john.desborough
@Ellen84 - if you created a variable to use as a counter, then in each question you can use a logic rule like this to add 1 to the counter:
if qX is YES then add 1 to v_counter (my name for the variable)
then on the last of the questions, your analysis would be like this in the logic rules
if v_counter less than 10 go to ending 1
if v_counter less than 20 and v_counter greater than or equal to 10 go to ending2
if v_counter greater than or equal to 20 go to ending 2