@Laura.Sola - this comes from a fellow user..
you are on the right track..
if you add the appropriate points to each of the cat_X variables that you need to collect, then at the end of the questions you will need to assess the variables against each other to determine where to send the others.. the logic will go something like this (assuming that all the cat_X variables are complete)
- create a variable called cat_a_biggest, and set it to No (same for all other cat_x variables)
- if cat_a is greater than 0 And cat_a minus cat_b is greater than 0, then set cat_a_biggest to Yes
- if cat_a is greater than 0 And cat_a minus cat_c is less than 0, then set cat_a_biggest to No
- if cat_a is greater than 0 And cat_a minus cat_d is greater than 0, then set cat_a_biggest to no
- repeat for all of variables against cat_a - if cat_a is YES at the end then route to ending for Cat A
- if cat_a _biggest is NO after the above, you will have to do the same with the other variables to determine which one is set to YES
this is a little sample of something that is similar
hope this helps somewhat