Does Google Forms allow duplication of sections on the fly?

This is such an open-ended question (and a Google search returned mixed results), but basically I'm trying to create a Google form that dynamically creates new sections based on the β€œkey” value that the Form user enters at the beginning.

eg. "How many users are you planning?"

The input value (string) will be converted to a numerical value (float) and then determine how many of them will be created after the following section types.

Is this possible with the existing Google Forms / Google Script system in Google?

0
source share
1 answer

It is possible, but you will have to use several forms.

Google forms are static and cannot be changed or modified using a script during a session (the user opens the form before submitting it). You cannot pull out the values ​​that the user entered into the form before they submitted it.

As a result, you can have an initial form that collects all the values ​​that affect subsequent forms, and then use a script to get the results and create a new form (for example, with 12 fields for 12 secured users in your original example), and then send the link on this form to your end user.

+3
source

Source: https://habr.com/ru/post/979118/


All Articles