How to Enable Calculated Values and Answer Piping in Forms?
How to Enable Calculated Values and Answer Piping
Calculated values and answer piping let you create dynamic variables using formulas and reuse them in integrations like email notifications.
Steps
- Go to the form edit page.
- Click Settings, then go to Variables.


- Click Add Variable.
- Enter a variable name and define your formula.
- In the formula editor:
- Click @ to insert a form field value.
- Select the field you want to use.
- Click fx to add or edit functions and logic.

- Click Create Variable to save.
Using the Variable
- Go to your integration (e.g. Email Notification).
- In the email body, click @ to insert variables.
- Select the calculated variable you created.
- The computed result will be sent automatically in the email or other integrations.


🧠Example Formulas for Calculated Values
- Quiz Scoring (Correct Answer Check)
IF(@FieldName = "Correct Answer", 1, 0)
- Total Score (Multiple Fields)
IF(@Field1 = "Correct", 1, 0) + IF(@Field2 = "Correct", 1, 0)
- Price Calculation (Quantity × Price)
@Price * @Quantity
- Discounted Price
@Price - (@Price * @Discount / 100)
- Full Name (Answer Piping / Text Combination)
@FirstName + " " + @LastName
Related Help Page
How do I enable and customize the email sent as a submission confirmation?
Updated on: 08/06/2026
Thank you!