@Lisalissh - create variables for a and b to act as subtotals and every time someone selects A, add one point to the a_subtotal using logic rule, same if they chose B add one to b_subtotal
then at the end you have the logic rules that do the following:
- if a_subtotal is greater than b_subtotal then go outcome page/ending for X
- if b_subtotal is greater than a_subtotal then go to outcome page/ending for Y
- if A_subtotal = b_subtotal go to the outcome page/ending for Z
you could also do similar by creating a variable for the outcome type (say v_outcome) and then the logic would be like this:
- f a_subtotal is greater than b_subtotal then replace v_outcome with X
- if b_subtotal is greater than a_subtotal then replace v_outcome with Y
- if A_subtotal = b_subtotal then replace v_outcome with Z
you can recall the the variables onto the screen using the @recall function (just type the @ sign and the list of variable should appear for you)
hope this helps
des