ROUNDDOWN
Rounds a number to the specified number of decimal places, always rounding down to the next valid increment.
Syntax: ROUNDDOWN (
value, places
)
Example: ROUNDDOWN ( 23.649, 0 )
Output: 23
Example: ROUNDDOWN ( 23.649, 1 )
Output: 23.6
Example: ROUNDDOWN ( 23.649, 2 )
Output: 23.64
Last updated
Was this helpful?