/
What exactly is a Calculated Field?

What exactly is a Calculated Field?

The Calculated field allows you to calculate a value based on the values that have been selected in the form.

A technical implementation can be very complex if you enable brackets in the algorithm.
For example,

((2 * (a + b)) + 5) / 3

is readable. However, it can be difficult to process.
This representation (in reverse Polish notation or postfix), on the other hand
a b + 2 * 5 + 3 /
can be processed relatively easily and is also readable for an experienced person.

For longer formulas (or calculation instructions), readability can be greatly impaired. For this reason, multi-line and structural commands have been supported since April 15, 2024.

A field consists of:

Here are some example templates:

Related content

Structure Elements for Calculated Fields
Structure Elements for Calculated Fields
More like this
Operators for Calculated Fields
Operators for Calculated Fields
More like this
How to configure Calculated Fields
How to configure Calculated Fields
More like this
Possible Field Types
Possible Field Types
More like this
Data Forms templates - generic fields
Data Forms templates - generic fields
More like this
How-to use Metadata values within Scripted Fields
How-to use Metadata values within Scripted Fields
More like this