LibreOfficeDev 25.2 Help
nDHDK‖Returns the integer value of a numeric expression by removing the fractional part of the number.
AxgCW‖Fix (Expression)
Double
wb98G‖ Expression: Numeric expression that you want to return the integer value for.
Sub ExampleFix
danCs‖ Print Fix(3.14159) ' returns 3.
EfZoD‖ Print Fix(0) ' returns 0.
VSC8H‖ Print Fix(-3.14159) ' returns -3.
End Sub