Does Google Forms allow for 'On-the-Fly' Section Duplication?

℡╲_俬逩灬. 提交于 2019-12-01 11:30:41

问题


This is such an open ended question, (and Google search returned mixed results) but basically, I am trying to create a Google Form that dynamically creates new Sections based on a 'key' value the Form user would input in the beginning.

E.g. "How many users are you provisioning for?"

The input value (string) would be converted into a number (float) value and would then determine how many subsequent Section Types are created.

Is this even possible with Google's existing Google Forms/Google Script framework?


回答1:


This is possible, but you would have to use multiple forms.

Google forms are static and can't be edited or altered with script during a session (user opening a form until they submit it). You can't pull out values that a user has entered into a form until they have submitted it.

As a result you could have an initial form which collects all the values which would influence subsequent forms, then use a script to take the results and create a new form, (e.g. with 12 fields for the 12 provisioned users in your initial example) and then email a link to this form to your end user.



来源:https://stackoverflow.com/questions/36465387/does-google-forms-allow-for-on-the-fly-section-duplication

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!