Any way to validate a Google form input?

前端 未结 2 1553
一向
一向 2020-12-21 18:51

I want to collect and validate a value (PIN) in a Google Form. The Form has 2 pages, and I\'d like the validation to affect form navigation:

  • If PIN matched wit
相关标签:
2条回答
  • 2020-12-21 19:45

    Not sure you can do this with Google Forms and Apps Script.

    But I have done exactly this with UiApp/Html Service in Apps Script. I used it for a light-duty user authentication.

    0 讨论(0)
  • 2020-12-21 19:52

    You are not able to create this type of dynamic form using the Google Forms Service, because there is no interaction between the service and scripts during form entry, except upon Form Submission. In the case of a multi-page form, a script has no way to know that a user has completed one page and gone on to another.

    You could achieve this using the HtmlService or UiService, by writing your own form.

    0 讨论(0)
提交回复
热议问题