How to Make Excel Not ROUND

If you just need to make excel not round 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 =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.

On this page7
Annotated stepsExcel
1

Click an empty cell and type =ROUND(A2, 2), replacing 2 with the decimal places you need.

2

Use 0 to round to whole numbers, or negative digits for tens and hundreds: =ROUND(A2, -2) turns 1234 into 1200.

3

Switch to ROUNDUP or ROUNDDOWN when the direction must not depend on the decimals.

4

Use =MROUND(A2, 5) to reach the nearest multiple — 0.05 for 5-cent pricing.

5

Reserve Home ▸ Decrease Decimal for pure display changes; it never alters the value.

=ROUND(A2, 2)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. 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. Treat “make excel not round” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. 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 turns a layout choice that keeps the sheet readable and sortable into a method you can reuse, explain, and defend when the workbook leaves your screen.

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

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. Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. The short version of “make excel not round”: 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

  • 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) with ROUNDUP and ROUNDDOWN (forced direction).
  • Forgetting that MROUND returns #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.