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

FieldDescription
Fields in sectionThe group of fields that repeat
Min instancesMinimum number of entries (default: 1)
Max instancesMaximum number of entries
Add button textLabel 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)
Note

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:

TabWhat you configure
DesignQuestion text, description, placeholder, help text
DataDefault value, variable name, prefill from URL parameters
SettingsRequired/optional, read-only, hidden
ValidationsFormat rules, min/max, custom error messages
ImageAttach 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.