Calculations let your forms do math on the fly, adding, subtracting, multiplying, or dividing values as users fill them out. Use them to total an order, score a quiz, calculate a quote, or feed a payment amount to a gateway.
Creating a Calculation
Creating a calculation in Ninja Forms has two primary steps:
- Creating the fields on which to base the calculation
- Creating the calculation itself
Any field that can accept a fully numeric input can be used to base a calculation on. Alternatively, any fields with a “Calc Value” in them can also be used in calculations.
The following fields have a Calc Value setting and/or can be used in calculations:
- Single Checkbox
- Select a single item
- Checkbox List
- Select one or more items
- Select List
- Select a single item from a dropdown
- Multi-Select
- Select one or more items from a dropdown
- Radio List
- Select a single item from a list
- Select Image
- Select one or more items with an image
- Number
- Enter a numeric value
Once you have added fields to use in your calculation, creating the calculation itself is very simple.
In the form builder, go to “Advanced” and then to “Calculations”:

Click “Add New” to add a calculation to your form:

Name your calculation. You will use this name to reference the calculation in other places, including displaying the value in the form itself or in any actions.
Example:
my_variable, my-variable, myVariable, MyVariable
Now, create the calculation. Using the “Merge Tags” icon in the “Equation” text area, choose the fields that you would like to use in your calculation. In the example below, I’ve added the list field from our example above as well as a number field. You may multiply (*), divide (/), add (+), or subtract (-) any two fields. Order of operations is honored. In our example, however, I am simply adding the two fields together.

You’ll notice that the merge tags in calculation fields add “:calc”, a convention only seen here. This is to let the calculation know to use the “Calc Value” of a field if it exists instead of the normal, submitted “Value.” In the absence of a “Calc Value”, the submitted “Value” will be used instead.
Displaying the Calculation in Your Form
Displaying a calculation in your form is very easy! In the form builder, add an HTML field to your form from the “Layout Fields” section:

Once added, open the HTML field settings and choose the merge tag that matches your calculation name:

This will add a merge tag to your form beginning with “calc:”, indicating that a calculated value will appear in this location.
That’s it! Preview the form on the front end and you will see your total being displayed. You are free to add a currency symbol, percentage symbol, styling, or any other content to the display of your total. It will update dynamically as the form is completed.
For example, changing the HTML field to Total: ${calc:my_first_calculation} will display in your form like this:

Using a Calculation as a Payment Value
Calculations can be used as the totals sent to any payment gateway connected to Ninja Forms. See the documentation for that payment gateway for details for example the Stripe documentation or PayPal Checkout documentation, and see the section titled Using a Calculation to generate a total.
Advanced Calculation Tips
Nest Calculations for Complex Logic
Calculations can nest. Any new calculation you add can use any other calculation above it in the list (but never below it). This can allow for some pretty amazing and powerful use cases.
Trigger Actions Based on Calculated Values
Calculations can be used to fire actions conditionally with our Conditional Logic addon. This means that based on a user’s answers to questions in your survey, quote request form, etc. that you can send them to different landing pages, contact different members of your sales team, gauge how “hot” your lead is, and more.
Saving Calculation Output at Submission
Calculations process during the user session and are dependent on the data as it exists in the live form. This means that the output of calculation merge tags can update when placed in HTML fields while the user interacts with the form. However, it also means that the calculations themselves do not have a definite value when the form is submitted, so calculation merge tags will not populate when re-triggering emails or in exports or PDFs. If you need to save the calculation output as it exists when the form is submitted, you can place it in a Hidden field and then include the Hidden field’s merge tag where you need the calculated value. This will save the calculation output as it existed at the time of submission as a string, enabling it to be reproduced wherever the Hidden field merge tag appears.
