Yes or No

A simple binary choice field. Displays two buttons; the respondent clicks one. Unlike a checkbox, it has three states: Yes, No, or unanswered.

Configuration

FieldDescription
Question textThe yes/no question
Yes labelCustom text for the "Yes" option (default: "Yes")
No labelCustom text for the "No" option (default: "No")
Default valuePre-selected answer (none by default)
RequiredMust answer before proceeding

Custom labels

Use caseYes labelNo label
Consent"I agree""I decline"
Availability"Available""Not available"
Interest"Interested""Not interested"
Confirmation"Confirm""Cancel"

Common uses

  • Terms acceptance (I agree / I decline)
  • Newsletter opt-in (Subscribe / No thanks)
  • Consent questions (GDPR)
  • Simple survey questions
  • Feature interest (Would you use this?)

Connecting to workflow logic

Form (Yes/No: "Want a demo?") → If-Else (answer === "Yes") →
  Yes: Schedule demo email
  No: Send product guide email

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.