Returns the integer value of a numeric expression by removing the fractional part of the number.
Fix (Expression)
Double
Expression: Numeric expression for which you want to return the integer part.
5 Invalid procedure call
Sub ExampleFix
Print Fix(3.1415926) ' returns 3.
Print Fix(0) ' returns 0.
Print Fix(-3.1415926) ' returns -3.
End Sub