Reputation: 329
Is there a way to have form "go to section" one after the other in case of conflict?
Let's say we have two questions with multiple-choice "go to section" set up, as you see above. The thing is that Forms will base the logic only upon the last multiple-choice. This means that if I select anything in the 2nd question, it will ignore the answer to the first question. While I do understand why this is programmed that way, I was wondering if there's a way to make them both work? One idea was to send me to the sections one after the other. This would mean that "after section 1" should be dynamically updated from "submit" to "go to section 2". It cannot be always "go to section 2" as I don't always need to go to that section :) One section after the other is just one idea. I'm sure there're other creative ways to solve this. Any ideas? Details
Upvotes: 2
Views: 1463
Reputation: 26836
If both question1
and question2
are located in the same section, you cannot avoid conflicts by specifying different behavior after for responding those questions
If the answer to the first question triggers "Go to section 2" and the answer to the second question triggers "Go to section 3" - how is the form supposed to know which request has priority.
You need to restructure your logic
question1
and question2
into separate sectionsquestion1
, after answering which the user is redirected. After filling out the section to which the user has been redirected - implement a redirection the a new section, where question 2 is implemented.Upvotes: 2