NAME
FIX, INT Functions
SYNOPSIS
FIX(numeric-expression)
INT(numeric-expression)
o numeric-expression Any numeric expression.
DESCRIPTION
FIX truncates a floating-point expression to its integer portion.
INT returns the largest integer less than or equal to a numeric expression.
Example:
PRINT FIX(12.49), FIX(12.54) 'Output is: 12 12
PRINT INT(12.54), INT(-99.4) 'Output is: 12 -100
SEE ALSO
CINT CLNG