Formula Guide

The Excel ROUND Function
explained simply

ROUND changes the actual stored value — not just the display. Here is the complete guide with 6 real examples, ROUNDUP vs ROUNDDOWN, and common mistakes.

ExcelPro · 6 min read · Updated June 2026
Contents
  1. What does ROUND do?
  2. Syntax
  3. 6 real examples
  4. ROUNDUP and ROUNDDOWN
  5. MROUND, CEILING, FLOOR
  6. Common mistakes
  7. FAQ

What does ROUND do?

ROUND rounds a number to a set number of decimal places using standard mathematical rounding — values of 5 or above round up, below 5 round down. It changes the actual stored value, unlike cell formatting which only changes how a number looks.

Use ROUND in financial reports, VAT calculations, commission figures, and anywhere you need numbers to be consistent and printable — not just visually formatted.

Syntax

=ROUND(number, num_digits)
ArgumentDescription
number requiredThe number to round. Can be a value, cell reference, or formula.
num_digits requiredThe number of decimal places. 2 = two decimals. 0 = nearest whole number. Negative values round to the left of the decimal point.

6 real examples

Example 1
Round to 2 decimal places (currency)
=ROUND(A2, 2) ← 14.5678 → 14.57
Example 2
Round to nearest whole number
=ROUND(A2, 0) ← 14.5 → 15 | 14.4 → 14
Example 3
Round to nearest 10, 100, or 1000

Use negative num_digits to round to the left of the decimal point.

=ROUND(1234, -1) ← rounds to nearest 10 → 1230 =ROUND(1234, -2) ← rounds to nearest 100 → 1200 =ROUND(1234, -3) ← rounds to nearest 1000 → 1000
Example 4
Round the result of a calculation

Round VAT-inclusive prices to 2 decimal places.

=ROUND(A2 * 1.20, 2)

Avoids floating-point precision errors like 14.999999999997 that appear in raw calculations.

Example 5
Round to 1 decimal place (percentages)
=ROUND(A2/B2*100, 1) ← 15.6666... → 15.7%
Example 6
Avoid rounding errors in financial totals

When summing many rounded values, the total can drift. Round the total itself too.

=ROUND(SUM(A2:A100), 2)

ROUNDUP and ROUNDDOWN

When you always need to round in one specific direction regardless of the digit:

=ROUNDUP(A2, 2) ← always rounds away from zero =ROUNDDOWN(A2, 2) ← always rounds toward zero
Formula14.52114.555Use when
ROUND(x,2)14.5214.56Standard rounding (most common)
ROUNDUP(x,2)14.5314.56Never underestimate (e.g. boxes needed)
ROUNDDOWN(x,2)14.5214.55Conservative floor estimate

MROUND, CEILING, FLOOR — round to a multiple

When you need to round to the nearest multiple of a number rather than a decimal place:

=MROUND(43, 5) ← 45 (nearest multiple of 5) =CEILING(43, 5) ← 45 (rounds UP to multiple of 5) =FLOOR(43, 5) ← 40 (rounds DOWN to multiple of 5)

Common mistakes

⚠️ Formatting vs rounding — not the same thing

Formatting a cell to show 2 decimal places only changes the display — the stored value is still 14.5678. ROUND changes the actual value to 14.57. If downstream calculations need rounded values, use ROUND — not formatting.

⚠️ ROUND(SUM()) vs SUM(ROUND())

These give different results. SUM(ROUND()) rounds each value first then adds — useful for matching hand calculations. ROUND(SUM()) adds all raw values then rounds the total — more mathematically accurate but may not match rounded line items.

FAQ

Why does ROUND(2.5,0) return 2 in some versions of Excel?
It shouldn't — standard ROUND uses "round half up" so 2.5 should give 3. If you see 2, check whether you're using a system-level setting or a different function. Excel's ROUND should always round .5 away from zero.
Can ROUND work with negative numbers?
Yes. ROUND(-14.567, 2) returns -14.57. ROUNDUP rounds away from zero (so -14.521 rounds to -14.53). ROUNDDOWN rounds toward zero (-14.521 rounds to -14.52).
How do I round time values in Excel?
Use MROUND: =MROUND(A2, "0:15") rounds to the nearest 15 minutes. Or =CEILING(A2,"1:00") rounds up to the nearest hour.
What is the difference between ROUND and INT?
INT always rounds down to the nearest integer (floor), regardless of the decimal value. ROUND(x,0) rounds to the nearest integer using standard rounding. INT(-2.7) gives -3 (rounds down toward negative infinity). ROUND(-2.7,0) gives -3 (rounds away from zero). For positive numbers they often give the same result.

Practise ROUND in financial scenarios

ExcelPro has ROUND, ROUNDUP, CEILING and FLOOR exercises across all tracks. Free to start.

Try rounding exercises →

Related formulas

ROUNDUP CEILING FLOOR SUM TEXT INT