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.

You can use it in other formulas like this:
js
[area] * 10Or in the conditions like this:
js
[area] > 100The 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.
