Number

A numeric input field that only accepts numbers. Configure minimum, maximum, and decimal places.

Configuration

FieldDescription
Question textThe label
Min valueLowest acceptable number
Max valueHighest acceptable number
Decimal placesNumber of decimal digits allowed (0 for integers)
Default valuePre-filled number
RequiredMust be filled
PlaceholderHint text

Validation

  • Non-numeric input is rejected
  • Values outside min/max range show an error
  • Decimal places are enforced (e.g., 2 decimal places: 99.99 OK, 99.999 rejected)

Common uses

  • Quantity / count
  • Age
  • Budget amount (use Currency for money with symbols)
  • Employee count
  • Rating number (use Rating field for star-based)

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.