@cottonwood - part of the issue that you are facing is that when you send someone to an Ending in a scoring quiz is that it is looking for a range of values for the @score variable - ie your endings are if the @score variable is 1-5 go to ending 1, frmo 6-10 go to ending 2, etc.
another pat of the issue is that the logic on q2a that you are showing sends the user to an ending - or at least intends to send it to an ending based on the variable for leadership. problem: the logic bypasses all the other questions and sends them to THAT ending only. if you want to have them see a variety of potential outcomes from each section that they score, you would need to create a Statement page for each level of outcome ie if you had one page for range of score for leadership less than 3 (and all the other categories) and then have the logic rules to ‘walk’ the user through the appropriate sequence of output pages.
statement pages basically give information like an ending but are before the user hits submit
for example, if i score less than 3 in leadership, finance and relationships (my categories for the moment) i would want the user to see the three statement pages related to those scores and not the other 7)
i would typically put all this logic on a Yes/No question that comes after all the scoring questions and says “are you happy with your answers? if so, we’re going to pull back the curtain for you and show you the stuff:. “ if they answer yes then i trigger the logic and start the routing sequence. if no i send them back to the first question to review their answers.
the logic rules on this yes/no question are like dealing with a multi-select multiple choice logic (yes @Liz i have the cheatsheet for that one lol) and it goes something like this:
- on the yes/no question
- if @leadership is less than 3 go to Statement page for leadership
- if @variable2 is less than 3 go to Statement page for variable2
- if @finance is less than 3 go to statement page for finance
- if @relationship is less than 3 go to statement page for relationship
- if @variable4 is less than 3 go to statement page for variable4
- and so on
putting that set on the yes/no question will cause typeform to walk down the list and go to the first condition that it meets ie let’s say leadership is less than 3 and go that first statement page in the series (the order you present is the sequence in which the statement pages needs to be created and organized)
on the statement page for leadership, the logic is reduced by one step in that list - the first one..
- if @variable2 is less than 3 go to Statement page for variable2
- if @finance is less than 3 go to statement page for finance
- if @relationship is less than 3 go to statement page for relationship
- if @variable4 is less than 3 go to statement page for variable4
- and so on
- otherwise/in all other cases, go to Ending/next appropriate page after the statements
we want to evaluate IF another variable meets the condition and to go to that page - if nothing else matches the condition then the ‘otherwise’ condition sends them to an ending or another page after the statements
then on the variable2 page - the next in the sequence you would drop the first line and keep the otherwise as well
- if @finance is less than 3 go to statement page for finance
- if @relationship is less than 3 go to statement page for relationship
- if @variable4 is less than 3 go to statement page for variable4
- and so on
- otherwise/in all other cases, go to Ending/next appropriate page after the statements
again, check for the conditions and if nothing matches exit
on the last statement page, in your case the 10th one, you would only have the go to next page/ending logic.
if you were using the concept of say 3 pages for each cateegory to represent content for high, medium and low scores in the category, you would need to add conditions to the logic something like:
- if @leadership is less than 3 go to leadership_low statement
- if leadership is greater than 3 and leadership is less than or equal to 10 go to leadership_medium statement
- if leadership greater than 10 go to leadership_high staement page
- repeat for all other sets
- …
- otherwise exti
more places to go, more lines of logic but each is a declining balance type question.
hopefully that will help you figure it out..
des