Hello! I hope i explain this effectively.
I am creating a quiz which produces 16 different profiles for the end user.
The profiles are the result of 2 series of questions:
- Variable - Archetype_TotalScore
- Variable - Work_style_TotalScore
for each of the above, I have a series of question and seperate scoring. Each has 4 possible results.
for example:
Achetype on Total Score:
- 0-60 Points: The Dreamer
- 61-90 Points: The Builder
- 91-120 Points: The Evolver
- 121-150 Points: The Strategist
Work Style Scores
- 0-15 Points: Analytical/Thinker
- 16-30 Points: Creative/Innovative
- 31-45 Points: Action-Oriented/Doer
- 46-60 Points: Visionary/Leader
Once the user answers all questions they will be allocated a profile - eg. The Dreamer/Thinker or The Deamer/Leader - there are 16 different profiles/results.
I have set up all questions as follows:
- addess Quiz Scores to each question
- Added a logic to the Archeytpe questions - Always “add “score” to Archetype_TotalScore
- Added a logic to the Work Style questions - Always “add “score” to Work_style_TotalScore
I now need to set up something / logic so that the based on the scores of each variable, they will be directed to a different end page:
eg.
if total_archetype_score >= 0 and total_archetype_score <= 60 and total_workstyle_score >= 0 and total_workstyle_score <= 15
then direct toDreamer-Analytical
.if total_archetype_score >= 0 and total_archetype_score <= 60 and total_workstyle_score >= 16 and total_workstyle_score <= 30
then direct toDreamer-Creative
.
however I cannot see where or how to do this on the end page? I only have the option to add a total score range which does not work as I have 2 variables.
I am super new to this. I looked online and it suggests Logic Jumps but again, type form looks different on my end and i cant figure out how to add rules or logic to end pages, only questions.
Any suggestions would be super helpful.