I have a form with 25 questions. I've got code here that tabulates answers and produces the result "one" "two" or "three" based on what questions you picked.
The next form (not page, a whole new form) has 4 fields.
Name: [___________]
Result: [___________] (this gets pre-populated with the values above)
New Question: [___________] (This is a drop down with value "a", "b", and "c")
End Result: [___________]
I need a way to populate the End Result field with data from the middle two. I'm not quite sure how to go about this? :/
this means
R="one" | NQ:="b" === ER="one+b" with one+b being a new result. or
R="one" | NQ:="a" === ER="one+a"
So 9 total possible outcomes