INT function
From Apache OpenOffice Wiki
< Documentation | How Tos
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Trigonometric
Hyperbolic
Rounding and remainders
Logarithm/Powers
Bessel functions
Miscellaneous
INT
Rounds a number down to the nearest integer.
Syntax:
INT(number)
- returns number rounded down to the nearest integer.
- Negative numbers round down to the integer below: -1.3 rounds to -2.
Example:
INT(5.7)
- returns 5
INT(-1.3)
- returns -2.
See Also