Double Divide Operator
Arithmetic division
The arithmetic division of a first whole number by a second whole number which is then rounded down to the nearest whole number.
This function is equivalent to applying the
Int
function to the /
operator. note
ARITHMETIC OVERFLOW
This function is non-evaluable if the resultant value would exceed approximately +/- 1.8e308.
For example, dividing by zero.
Returns:
Whole Number
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Whole Number | The first whole number. |
2 | Whole Number | The second whole number. |
Examples:
When using functions inside a field, remember the field brackets:
{TotalCost //12}
Expression | Result |
|---|---|
3 // 3 | 1 |
4 // 3 | 1 |
-4 // 3 | -1 |