Excel ROUNDUP Function
ROUNDUP rounds a positive number up to the precision you choose or a negative number down to the precision you choose.
Use it when extra precision should push the result outward, such as for package counts, billing increments, minimum reserves, or required capacity.
ROUNDUP syntax & arguments
Syntax
=ROUNDUP(number, num_digits)
-
1
number
RequiredThe number, cell reference, or formula result to round outward at the chosen decimal or place value.
-
2
num_digits
RequiredThe number of digits or places to keep. Positive
num_digitsvalues keep that many decimal places, so2changes12.981to12.99and-12.981to-12.99.0keeps no decimal places, so12.1becomes13and-12.1becomes-13. Negativenum_digitsvalues work left of the decimal.-1rounds to a multiple of 10,-2rounds to a multiple of 100 and so on. For example,num_digitsof-1turns121to130and-121to-130.
Example
=ROUNDUP(B2, 2)
Round B2 to two decimal places, pushing away from 0 if later decimals remain.
ROUNDUP caveats
-
Negative numbers actually round down moving farther from zero
ROUNDUP rounds negative numbers down instead of up, which may not be intuitive given the function's name. For instance,
=ROUNDUP(-9.81,1)returns-9.9, not-9.8. -
Negative num_digits uses place values
A
num_digitsof-1rounds positive numbers up to the next higher multiple of 10 and negative numbers down to the next lower multiple of 10 while anum_digitsof-2rounds positive numbers up to the next higher multiple of 100 and negative numbers down to the next lower multiple of 100 and so on. So for instance,=ROUNDUP(987,-2)returns1000and=ROUNDUP(-987,-2)returns-1000. -
It does not choose the nearest value
=ROUNDUP(2.1,0)returns3, not the nearest whole number2. Any digit after the chosen place pushes the result farther from zero, even when it is below 5.
Need alternative rounding? Use ROUND when values should go to the nearest result, or ROUNDDOWN when positive numbers should round down and negative numbers should round up.
Intro ROUNDUP practice problem
Solve the intro problem directly here, or open it on its own page.
Advanced ROUNDUP practice problems
Use ROUNDUP alongside other Excel functions in realistic, less-prescriptive challenges.