Was this helpful?
Fix (number)
This built-in function returns the integer portion of a number. The argument number can be any valid numeric expression. Fix removes the fractional part of number and returns the resulting integer value. If number is negative, Fix returns the first negative integer greater than or equal to number. The data type of the return value is the same as that of the number argument.
Example
# The following example converts -98.6 to -98
Fix(-98.6)
Last modified date: 08/02/2023