Int Function

Description:
Round a number down (towards infinity) to the nearest whole number.
Returns:
Whole Number
Parameter:
Parameter
Data Type
Description
1
Number
The number to be rounded.
Examples:
When using functions inside a field, remember the field brackets:
{Int(VariableName)}
Expression
Result
Int( 6.001 )
6
Int( -6.001 )
-7