Rounds a number to a certain number of decimal places, always rounding up to the next valid increment.
Sample Usage
ROUNDUP(99.44,1)
ROUNDUP(A2)
Syntax
ROUNDUP(value,[places])
-
value
- The value to round toplaces
number of places, always rounding up. -
places
- [ OPTIONAL -0
by default ] - The number of decimal places to which to round.places
may be negative, in which casevalue
is rounded at the specified number of digits to the left of the decimal point.
Notes
ROUNDUP
operates likeROUND
except that it always rounds up.
See Also
TRUNC
: Truncates a number to a certain number of significant digits by omitting less significant digits.
ROUNDDOWN
: The ROUNDDOWN function rounds a number to a certain number of decimal places, always rounding down to the next valid increment.
ROUND
: The ROUND function rounds a number to a certain number of decimal places according to standard rules.
MROUND
: Rounds one number to the nearest integer multiple of another.
INT
: Rounds a number down to the nearest integer that is less than or equal to it.
FLOOR
: The FLOOR function rounds a number down to the nearest integer multiple of specified significance.
CEILING
: The CEILING function rounds a number up to the nearest integer multiple of specified significance.