עזרה עבור Collabora Office 24.04
Returns the integer value of a numeric expression by removing the fractional part of the number.
Fix (Expression)
Double
\<emph\>Expression:\</emph\> Numeric expression that you want to return the integer value for.
Sub ExampleFix
Print Fix(3.14159) REM returns 3.
Print Fix(0) REM returns 0.
Print Fix(-3.14159) REM returns -3.
End Sub