Multi-Page Forms

For long forms (10+ fields), break the form into multiple pages using Question Groups. Each group becomes a page with a Next/Back navigation and progress indicator.

How to create multi-page forms

  1. Add a Question Group node to your form canvas
  2. Add questions inside the group; they'll appear together on one page
  3. Add another Question Group for the next page
  4. Connect them in sequence
  5. Each group = one page in Card mode

Page structure

Welcome Screen →
  Question Group 1: "Personal Info" (name, email, phone) →
  Question Group 2: "Company Info" (company, role, size) →
  Question Group 3: "Project Details" (budget, timeline, requirements) →
Thank You Screen

Progress indicator

In Card display mode, multi-page forms show:

  • Progress bar at the top (percentage complete)
  • Page count ("Step 2 of 4")
  • Next / Back navigation buttons

Conditional pages

Combine with If-Else logic to show different pages based on answers:

Question Group 1 (role question) →
  If-Else (role === "Developer") →
    True: Question Group 2A (technical questions)
    False: Question Group 2B (business questions) →
  Question Group 3 (shared final questions) →
Thank You

Best practices

PracticeWhy
3-5 fields per pagePrevents overwhelm
Group related fields"Personal Info" page, "Company Info" page
Most important firstPut critical fields on page 1 (in case they abandon)
Save progressLong forms benefit from save-and-continue functionality
Show progressProgress bar reduces perceived length
Tip

In Card mode, each Question Group is automatically a separate page. In Classic mode, all groups show on one page with visual separators.