ROUND Down Function Excel

“round down function excel” comes up constantly, so this page leads with the exact answer, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “round down function 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

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. If you take one thing from this page on “round down function excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

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.