In Excel: use =ROUND(A2, 2) to round to 2 decimal places, ROUNDUP or ROUNDDOWN to force the direction, or MROUND for the nearest multiple; Home ▸ Decrease Decimal only changes the display, not the stored value.
Click an empty cell and type =ROUND(A2, 2), replacing 2 with the decimal places you need.
Use 0 to round to whole numbers, or negative digits for tens and hundreds: =ROUND(A2, -2) turns 1234 into 1200.
Switch to ROUNDUP or ROUNDDOWN when the direction must not depend on the decimals.
Use =MROUND(A2, 5) to reach the nearest multiple — 0.05 for 5-cent pricing.
Reserve Home ▸ Decrease Decimal for pure display changes; it never alters the value.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
ROUND changes the stored value to the nearest number at the digits you specify, rounding .5 away from zero. ROUNDUP and ROUNDDOWN force the direction regardless of the next digit, and MROUND rounds to the nearest multiple, such as 5 or 0.05. That is different from Home ▸ Decrease Decimal, which only shortens the display: the cell keeps its full value, which is why formatted sheets can show totals that don’t add up. The same functions work in Google Sheets. 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. For “round off formula in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. 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. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
A2 contains 3.14159. =ROUND(A2, 2) returns 3.14 and =ROUNDUP(A2, 2) returns 3.15. For multiples, =MROUND(47, 5) returns 50, and =MROUND(4.87, 0.05) returns 4.85 — the classic nearest-5-cents price. Rounding matters wherever printed figures must reconcile — invoices, price lists, reports — because a sum over full-precision values rarely matches a column of neatly formatted numbers. 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. 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. Treat “round off formula in excel” 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
- Using Decrease Decimal and expecting the stored value to change — the cell still holds 3.14159.
- Wondering why totals don’t match the visible digits: the sum uses full precision, the display doesn’t.
- Confusing
ROUND(to nearest) withROUNDUPandROUNDDOWN(forced direction). - Forgetting that
MROUNDreturns#NUM!when the number and the multiple have opposite signs. - Rounding intermediate results, which compounds errors down a calculation chain.
Frequently asked questions
How do I round to 2 decimal places in Excel?
Use =ROUND(A2, 2). To only shorten the display, use Home ▸ Decrease Decimal instead.
How do I round to the nearest whole number?
=ROUND(A2, 0). Use ROUNDUP or ROUNDDOWN when the result must always go one way.
Why don’t my totals add up after rounding?
You rounded the display, not the values. Wrap each figure in ROUND so the stored numbers match what is printed.