ROUNDUP
Rounds a number to the specified number of decimal places, always rounding down to the next valid increment.
Syntax: ROUNDDOWN (
value, places
)
Example: ROUNDUP ( 23.449, 0 )
Output: 24
Example: ROUNDUP ( 23.449, 1 )
Output: 23.5
Example: ROUNDUP ( 23.449, 2 )
Output: 23.45
Last updated
Was this helpful?