LOTUSSCRIPT LANGUAGE
Returns the integer part of a number.
Syntax
Fix ( numExpr )
Elements
numExpr
Fix returns the value of its argument with the fractional part removed. The data type of the return value is determined by the data type of numExpr. The following table shows special cases.
The Fix function rounds toward 0:
Tip It is always true that Fix(numExpr) + fraction(numExpr) = numExpr.
Example See Also