Calculated Field

A read-only field that computes a value from other fields in the form. Use it for totals, scores, derived values, and dynamic calculations.

Configuration

FieldDescription
FormulaThe calculation expression referencing other field values
DisplayHow to show the result (number, currency, percentage)
HiddenWhether to show the result to the respondent

Formula examples

FormulaWhat it calculates
{{quantity}} * {{price}}Line total
{{rating1}} + {{rating2}} + {{rating3}}Combined score
({{correct}} / {{total}}) * 100Percentage score
{{subtotal}} * 1.18Total with 18% tax

Common uses

  • Order total (quantity × price)
  • Quiz score (sum of correct answers)
  • BMI calculator (weight / height²)
  • Tax calculation
  • Discount amount
Note

Calculated fields update in real-time as the respondent fills in the referenced fields. The computed value is included in the form submission data.

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.