In Excel: use =ROUND(number, num_digits) — standard half-up rounding, so =ROUND(2.345, 2) returns 2.35 and the cell holds the rounded value, not just a shorter display.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
number | required | The value to round. |
num_digits | required | Decimal places to keep. 2 gives cents, 0 gives whole numbers, -3 rounds to the nearest thousand. |
Related functions
Select the cell for the rounded result and type =ROUND(.
Click the cell containing the value, or nest a calculation such as AVERAGE(B2:B40).
Type a comma and the decimal places: 2 for currency, 0 for whole numbers.
Press Enter, then compare the sum of the rounded column against the rounded sum — if they differ, decide deliberately which one your report should show.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
ROUND applies the rounding rule most people mean by default: below half goes down, half or above goes away from zero. Its second argument sets the precision — 2 for currency, 0 for whole units, and negative values for tens, hundreds or thousands. The important distinction is against number formatting: reducing the displayed decimals leaves the full precision in the cell, so a column of formatted values can visibly fail to add up to its own total. ROUND changes the stored number, which is why finance models round explicitly at the points where a real rounding actually happens rather than relying on formats. 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 “round formula in excel” 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 formula 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 calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
A line total of 2.34499 in A2 needs to be a real currency amount: =ROUND(A2, 2) returns 2.34. A revenue figure for a summary slide, =ROUND(1847320, -3), returns 1847000. Rounding an average to one decimal before charting it, =ROUND(AVERAGE(B2:B40), 1), keeps the axis labels honest. ROUND is the difference between a spreadsheet whose figures reconcile and one that merely looks like it does, which is why it belongs at every point a model touches money. 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 or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. Treat “round 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 a number format instead of
ROUNDand then wondering why the visible figures do not add up to the visible total — the format hides precision, it does not remove it. - Rounding intermediate results throughout a model, which accumulates error; round at the boundaries where a real-world rounding occurs.
- Expecting banker's rounding: Excel's
ROUNDalways rounds a half away from zero, so 2.5 becomes 3, not 2.
Frequently asked questions
Does ROUND change the value or the display?
The value. The cell contains the rounded number, so anything that references it uses the rounded figure. Number formatting, by contrast, changes only what is shown.
How do I round to the nearest hundred?
Pass a negative digit count: =ROUND(A2, -2) rounds to the nearest hundred, -3 to the nearest thousand.
Why does my rounded column not sum to the rounded total?
Because rounding each row and rounding the total are different calculations. Pick one deliberately — most reports round the rows and let the total be their sum, so the printed figures reconcile.
Other ways people ask this
On the way here you may have searched this as “round of formula in excel”, “formula for round in excel”, “how to round in excel formula” and “round formula for excel” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “round of formula in excel”, “formula for round in excel”, “how to round in excel formula” all point at the one operation explained on this page, which is why they all lead here.