这是一个开放式的问题,(谷歌搜索返回了不同的结果)但基本上,我正在尝试创建一个Google表单,该表单根据'键动态创建新的部分。表单用户在开头输入的值。
E.g。 "您为多少用户配置?"
输入值(字符串)将转换为数字(浮点)值,然后确定创建的后续节类型的数量。
这是否可以使用Google现有的Google表单/ Google Script框架?
答案 0 :(得分:3)
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.