Divide Operator

Arithmetic Division

The arithmetic division of a first number by a second number.
note
ARITHMETIC UNDERERFLOW
This function is non-evaluable if the resultant value would be smaller than approximately +/- 2.2e-308.
For example, dividing a very small number by a very big number.
note
ARITHMETIC OVERFLOW
This function is non-evaluable if the resultant value would exceed approximately +/- 1.8e308.
For example, dividing by zero.
Returns:
Number
Parameters:
Parameter
Data Type
Description
1
Number
The first number.
2
Number
The second number.
Examples:
When using functions inside a field, remember the field brackets:
{YearlyAmount / 12}
Expression
Result
2.5 / -3.4999
-0.714306123032087
2.5 / 2
1.25

Related Content