If I have a Google Form, how might I use Apps Script to:
1.) Get the user's responses to questions on one page of the form
- INTERJECT SCRIPT LOGIC
2.) (pause) the form and have the script activate to:
- process their results
- depending on the result of that processing, move them to a different page
Basically, I want to have the script analyze the results of a particular page, and redirect them to a new page depending on the results to multiple answers. There is a redirect utility in the form itself, but it only works for the result of one question. I have two questions that I need to ask, and based on both of those answers, move them to a new page.
I know that I can create Item
s that have a PageNavigationType
as seen here, however, this is for a single item only. There is also no setPageNavigationType
for Item
s, so I'm wondering if this is even possible to do dynamically as a user is filling out the form?