ROUND Function Excel

If you just need to round function excel 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(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

=ROUND(number, num_digits)

Arguments

Argumentrequired / optionalDescription
numberrequiredThe value to round.
num_digitsrequiredDecimal places to keep. 2 gives cents, 0 gives whole numbers, -3 rounds to the nearest thousand.

Related functions

ROUNDUPROUNDDOWNMROUND
Annotated stepsExcel
1

Select the cell for the rounded result and type =ROUND(.

2

Click the cell containing the value, or nest a calculation such as AVERAGE(B2:B40).

3

Type a comma and the decimal places: 2 for currency, 0 for whole numbers.

4

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.

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

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. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “round 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 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. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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. The short version of “round function excel”: 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 a number format instead of ROUND and 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 ROUND always 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

This is also commonly searched as “function round excel”, “how to use round function in excel”, “how to use the round function in excel” and “round of function in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.

Why do people search for this in so many different ways?

Because the same task has many names. “function round excel”, “how to use round function in excel”, “how to use the round function in excel” all point at the one operation explained on this page, which is why they all lead here.