@atxer - I’ve done this type of solution for registration for summer camps, sports teams etc.
one of the things that you could do is ask a question about the number of children the user has to register and assign that value to a variable.
create a question group for the specifics you need to ask and duplicate this question group after you have created all the questions inside. I allowed up to 12, for example for a soccer leagure.
then, if the user says 3 (for example), you would do the following
- go to question group 1 (for the first child)
- ask the questions
- on the last question in the group you put in logic rules that go like this:
- always subtract 1 from counter_variable
- if counter_variable is greater than 0 jumpto question group 2
- if counter_variable = 0 then jumpto ending (or other question)
- this will check to see if there are more to add and then will jump to the appropriate spot.
on the last question of your max number question group (in my case, on the 12th registration form possible) i jumpto a statement page that says - ok,. you’ve entered the maximum number of folks at this point. press submit to lock them in. if you need to add more, then you will need to launch the form again
this should reduce the amount of stuff that is flowing into your spreadsheet..
des