Number
A numeric input field that only accepts numbers. Configure minimum, maximum, and decimal places.
Configuration
| Field | Description |
|---|---|
| Question text | The label |
| Min value | Lowest acceptable number |
| Max value | Highest acceptable number |
| Decimal places | Number of decimal digits allowed (0 for integers) |
| Default value | Pre-filled number |
| Required | Must be filled |
| Placeholder | Hint 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:
| 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.