Round to Thousands or Millions

Excel Formulas › Round

All versionsROUND

For dashboards and summaries, big numbers read better rounded to the nearest thousand or million. ROUND with a negative number of digits rounds to the left of the decimal point.


Quick formula: round A2 to the nearest thousand:
=ROUND(A2, -3)
A negative second argument rounds whole places: -3 = thousands, -6 = millions.

Functions used (tap for the full reference guide):

The example

1,234,567 → 1,235,000 (nearest thousand).

AB
1ValueNearest 1,000
21,234,5671,235,000

The formula

The formula:

=ROUND(A2, -3) // negative digits

How it works

How it works:

  1. ROUND(value, -3) rounds to the nearest thousand; -6 to the nearest million.
  2. A negative digits argument rounds to the left of the decimal point — the mirror image of rounding decimals.
  3. Pair with a custom number format to display in thousands without changing the value: #,##0,"K".
  4. Use ROUNDUP/ROUNDDOWN with negative digits to force direction (e.g. budget ceilings).

Round vs format: ROUND(A2,-3) changes the stored value to a multiple of 1,000. A number format like #,##0, (trailing comma) only displays the value in thousands while keeping full precision. Use ROUND when totals must match the rounded figures; use the format when you just want a cleaner look.

Try it: interactive demo

Live demo

Value and digits.

Rounded:

Variations

Nearest million

-6 digits:

=ROUND(A2, -6)

Round up to thousand

Always up:

=ROUNDUP(A2, -3)

Display in K

Format, not value:

#,##0,"K"

Pitfalls & errors

Negative digits round left. -3 means thousands; positive digits round decimals instead.

Rounded totals may not add up. Sum of rounded parts can differ from the rounded total by a thousand or two.

Format ≠ ROUND. A trailing-comma format only changes the display, not the stored number.

Practice workbook

📊
Download the free Round to Thousands or Millions practice workbook
A round-to-thousands sheet with the million, round-up, and display-format variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I round to the nearest thousand in Excel?
Use =ROUND(value, -3). A negative digits argument rounds to the left of the decimal: -3 for thousands, -6 for millions.
How do I show numbers in thousands without changing them?
Apply a custom number format with a trailing comma, like #,##0, for thousands or #,##0,, for millions — it only affects display.
Why don't my rounded numbers sum correctly?
Rounding each value independently can make the parts differ from the rounded total. Round the total separately if it must match.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Round to nearest · Round significant digits · Roundup & rounddown

Function references: ROUND