TRUNCATE(real_value)
The TRUNCATE function returns the integer portion of the real_value.
Example:
MyRealValue := 3.75; INTEGER4 MyValue := TRUNCATE(MyRealValue); OUTPUT(MyValue); // MyValue is 3
See Also: ROUND, ROUNDUP