Formula Guide

The Excel ROUNDDOWN Function
explained simply

ROUNDDOWN always rounds a number toward zero, regardless of the digit that follows — the mirror image of ROUNDUP.

ExcelPro · 4 min read · Updated June 2026
Contents
  1. What does ROUNDDOWN do?
  2. Syntax
  3. 4 examples
  4. Common mistakes
  5. FAQ

What does ROUNDDOWN do?

ROUNDDOWN rounds a number toward zero to a specified number of digits, no matter what the next digit is — 4.9 rounds down to 4 just as readily as 4.1 does.

Use it whenever overestimating would cause a problem — like calculating how many complete teams of 4 can be formed from 17 people (4 full teams, not 4.25).

Syntax

=ROUNDDOWN(number, num_digits)
ArgumentDescription
number requiredThe value to round.
num_digits requiredHow many digits to round to. 0 rounds to a whole number, negative values round to tens/hundreds.

Examples

Example 1
Round down to 2 decimal places
=ROUNDDOWN(4.567,2)

Returns 4.56 — truncates rather than rounds to nearest.

Example 2
Round down to a whole number
=ROUNDDOWN(12.9,0)

Returns 12 — any fractional amount is simply dropped.

Example 3
Round down to the nearest 10
=ROUNDDOWN(129,-1)

Returns 120.

Example 4
Complete teams from a group
=ROUNDDOWN(17/4,0)

17 people split into teams of 4 makes 4 complete teams, with 1 person left over — ROUNDDOWN avoids implying a partial 5th team.

Common mistakes

⚠️ Using ROUND when overestimating would be wrong

If rounding up would overstate capacity or availability, ROUNDDOWN is the honest choice.

⚠️ Forgetting it always moves toward zero

For negative numbers, ROUNDDOWN moves toward 0, not further away — -4.9 rounds to -4, not -5.

FAQ

Is ROUNDDOWN the same as TRUNC?
Nearly — TRUNC always cuts to 0 decimal places by default and has slightly different rounding-to-negative-digits behavior, but for most everyday use they behave the same.

Practise Excel with real data

ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.

Start practicing free →

Related formulas

ROUNDUP ROUND FLOOR CEILING