Skip to content

Field formulas

Field formulas are used to assign a value to a field based on a value of other fields.

Basic Usage

Calculate the area of a rectangle

js
[area] = [width] * [height]

The area field is a Dynamic Variable field.

Field formula

You can use it in other formulas like this:

js
[area] * 10

Or in the conditions like this:

js
[area] > 100

The field formulas serve to make your calculations easier and more efficient.

TIP

As with other formulas, you can use the formula functions to implement more complex logic.