Excel ROUNDDOWN Function
ROUNDDOWN rounds a positive number down to the precision you choose or a negative number up to the precision you choose.
Use it when extra precision should be discarded such as for computing completed units, capped rates, or conservative estimates.
ROUNDDOWN syntax & arguments
Syntax
=ROUNDDOWN(number, num_digits)
-
1
number
RequiredThe number, cell reference, or formula result to trim 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.987to12.98and-12.987to-12.98.0keeps no decimal places, so12.987becomes12and-12.987becomes-12. 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-1turns129to120and-129to-120.
Example
=ROUNDDOWN(B2, 2)
Round B2 two decimal places towards 0 and drop any later decimals.
ROUNDDOWN caveats
-
Negative numbers actually round up moving closer to zero
ROUNDDOWN rounds negative numbers up instead of down, which may not be intuitive given the function's name. For instance,
=ROUNDDOWN(-9.87,1)returns-9.8, not-9.9. -
Negative num_digits uses place values
A
num_digitsof-1rounds positive numbers down to the next lower multiple of 10 and negative numbers up to the next higher multiple of 10 while anum_digitsof-2rounds positive numbers down to the next lower multiple of 100 and negative numbers up to the next higher multiple of 100 and so on. So for instance,=ROUNDDOWN(987,-2)returns900and=ROUNDDOWN(-987,-2)returns-900. -
It does not choose the nearest value
=ROUNDDOWN(2.9,0)returns2, not the nearest whole number3. The digit after the chosen place is discarded, even when it is 5 or higher.
Need alternative rounding? Use ROUND when values should go to the nearest result, or ROUNDUP when positive numbers should round up and negative numbers should round down.
Intro ROUNDDOWN practice problem
Solve the intro problem directly here, or open it on its own page.
Advanced ROUNDDOWN practice problems
Use ROUNDDOWN alongside other Excel functions in realistic, less-prescriptive challenges.