Repeating Section
A group of fields that the respondent can add multiple instances of. Each instance has the same fields. Use when you don't know how many entries the respondent needs.
Configuration
| Field | Description |
|---|---|
| Fields in section | The group of fields that repeat |
| Min instances | Minimum number of entries (default: 1) |
| Max instances | Maximum number of entries |
| Add button text | Label for the "+ Add" button (e.g., "+ Add another team member") |
Example: Team members
Each repeating section contains:
- Name (short answer)
- Email (email)
- Role (dropdown)
- Phone (phone number)
The respondent fills in one set, clicks "+ Add another team member" to add more, up to the maximum.
Common uses
- Team member list (name + email + role)
- Order items (product + quantity + size)
- Work experience (company + title + dates)
- References (name + relationship + contact)
- Travel itinerary (destination + dates + hotel)
Each instance of the repeating section appears in the form submission as an array. In workflows, use a For Each loop to process each entry.
Configuration tabs
Every field has 5 configuration tabs when clicked on the form canvas:
| Tab | What you configure |
|---|---|
| Design | Question text, description, placeholder, help text |
| Data | Default value, variable name, prefill from URL parameters |
| Settings | Required/optional, read-only, hidden |
| Validations | Format rules, min/max, custom error messages |
| Image | Attach an image alongside the question |
Using in workflows
When this field is part of a form connected to a workflow via the Form Submission trigger, its value is available as a variable:
{{trigger.fieldName}}
Use it in any downstream node: send it in an email, store it in a database, pass it to an AI node for analysis, or use it in an If-Else condition for routing.