ROUNDDOWN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel ROUNDDOWN function rounds a number toward zero to a set number of digits — it always pulls the value down in magnitude, effectively truncating extra digits.


Quick answer:
=ROUNDDOWN(3.789, 1) = 3.7

Syntax

=ROUNDDOWN(number, num_digits)
ArgumentDescription
numberRequiredThe number you want to round down (toward zero).
num_digitsRequiredHow many digits to round to. Positive = decimal places, 0 = nearest whole number, negative = left of the decimal (tens, hundreds, ...).

How to use it

ROUNDDOWN uses the same (number, num_digits) syntax as ROUND but always rounds toward zero, discarding the rest of the digits no matter how large:

=ROUNDDOWN(3.789, 1) // 1 decimal = 3.7
=ROUNDDOWN(2.9, 0) // nearest whole = 2
=ROUNDDOWN(-2.9, 0) // toward zero = -2

With num_digits set to 0, ROUNDDOWN behaves exactly like TRUNC — both simply drop the fractional part toward zero.

ROUNDDOWN vs INT: for negatives they differ. =ROUNDDOWN(-2.9, 0) is -2 (toward zero), but =INT(-2.9) is -3 (toward negative infinity).

Try it: interactive demo

Live demo

Pick a ROUNDDOWN example to see the formula and its result.

Result:

Practice workbook

📊
Download the free ROUNDDOWN practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Is ROUNDDOWN the same as TRUNC?
At num_digits = 0 they're identical — both drop the decimals toward zero. They also share the same behavior at other digit counts, so the choice is mostly stylistic.
Does ROUNDDOWN round negatives toward or away from zero?
Toward zero. =ROUNDDOWN(-2.9, 0) returns -2, the value closer to zero.
How is ROUNDDOWN different from ROUND?
ROUND goes to the nearest digit, so 3.789 at 1 decimal becomes 3.8. ROUNDDOWN always pulls toward zero, giving 3.7.
What does a negative num_digits do?
It rounds down to the left of the decimal: =ROUNDDOWN(1299, -2) rounds down to the nearest hundred = 1200.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: ROUND · ROUNDUP · FLOOR · TRUNC · INT