Mathematical Operators

Add

Adds two numbers.

Example:

[Invoice Total] + [Delivery Cost]

Subtract

Subtracts the second number from the first number.

Example:

[Invoice Total] - [Discount]

Multiply

Multiplies two numbers.

Example:

[Unit Price] * [GST Percentage]

Divide

Returns a decimal result of a numeric division.

Example:

[EBITDA] / 12

Modulo

Returns the remainder of an integer division.

Example:

10 % 7 /* result = 3 */

Negate

Reverses the sign of a number.

Example:

-[Discount]