ROUNDDOWN Function in Excel

If you just need to rounddown function in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =ROUNDDOWN(number, num_digits) — it always rounds toward zero, so 9.99 with 0 digits becomes 9 however close to 10 it was.

Syntax

=ROUNDDOWN(number, num_digits)

Arguments

ArgumentDescription
numberrequiredThe value to round toward zero.
num_digitsrequiredDecimal places to keep. 0 truncates to a whole number, negative rounds left of the decimal point.

Related functions

ROUNDUPROUNDTRUNC
Annotated stepsExcel
1

Select the cell that should hold the reduced figure.

2

Type =ROUNDDOWN( and select the cell with the raw value.

3

Add a comma and the decimal places to keep; 0 leaves a whole number.

4

Press Enter. Compare against =ROUND on the same value to see where the two differ.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

ROUNDDOWN discards everything beyond the requested precision and never rounds up, no matter how close the value sits to the next step. 9.99 to zero decimals returns 9. Because it moves toward zero, a negative input shrinks in magnitude: -9.99 returns -9, which is the opposite of what ROUNDUP does. For positive numbers it behaves identically to TRUNC; the two diverge only on negatives, where TRUNC also truncates toward zero but is documented as a truncation rather than a rounding. Reach for it when overstating a figure is the risk — commission accruals, licence counts, anything you must not claim more of than you have. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “rounddown function in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

A bonus pool of 9.97 shares cannot be over-allocated, so =ROUNDDOWN(9.97, 0) returns 9 whole shares. Reporting a conversion rate conservatively, =ROUNDDOWN(0.4789, 2) returns 0.47 rather than the 0.48 that ROUND would give. For a headline figure, =ROUNDDOWN(18432, -3) returns 18000. ROUNDDOWN gives you a deliberately conservative number, which matters anywhere an overstated figure creates a liability rather than merely an inaccuracy. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “rounddown function in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Assuming -9.99 rounds to -10 — ROUNDDOWN moves toward zero and returns -9. ROUNDUP is the one that goes to -10.
  • Using ROUNDDOWN where the display was the real problem; if you only want fewer visible decimals, change the number format instead and keep the precise value.
  • Forgetting the second argument, which is required and not optional.

Frequently asked questions

Is ROUNDDOWN the same as TRUNC?

For everyday use, yes — both cut toward zero. The practical difference is that TRUNC treats its second argument as optional and defaults to 0, while ROUNDDOWN always requires it.

How do I always round down to a whole number?

Use =ROUNDDOWN(A2, 0). If you specifically want the next lower integer even for negatives, use INT instead — INT(-9.99) is -10, ROUNDDOWN(-9.99, 0) is -9.

Can I round down to the nearest 5 or 10?

Not directly — that is a multiple, not a decimal place. Use FLOOR: =FLOOR(A2, 5) rounds down to the nearest 5.