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.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
number | required | The value to round toward zero. |
num_digits | required | Decimal places to keep. 0 truncates to a whole number, negative rounds left of the decimal point. |
Related functions
Select the cell that should hold the reduced figure.
Type =ROUNDDOWN( and select the cell with the raw value.
Add a comma and the decimal places to keep; 0 leaves a whole number.
Press Enter. Compare against =ROUND on the same value to see where the two differ.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
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 “excel rounddown formula”. 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. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
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. 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 and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Treat “excel rounddown formula” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
Common mistakes
- Assuming -9.99 rounds to -10 —
ROUNDDOWNmoves toward zero and returns -9.ROUNDUPis the one that goes to -10. - Using
ROUNDDOWNwhere 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.