ROUND Down Formula in Excel

If you just need to round down formula 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. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “round down formula 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. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. The short version of “round down formula 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.

Other ways people ask this

This guide also answers

  • round down function excel