Round to Cents and Currency Units

Excel Formulas › Round

All versionsROUND

Money math needs clean rounding — to the cent for totals, to the nickel for cash, to the dollar for estimates. ROUND to 2 decimals fixes floating-point pennies; MROUND snaps to cash denominations.


Quick formula: round a price to the nearest cent:
=ROUND(A2, 2)
Two decimals = cents. Use MROUND(A2, 0.05) for nickel rounding, ROUND(A2, 0) for whole dollars.

Functions used (tap for the full reference guide):

The example

Clean money values, no stray fractions of a cent.

AB
1RawTo cents
212.345612.35
38.0058.01

The formula

The formula:

=ROUND(A2, 2) // nearest cent

How it works

How it works:

  1. ROUND(value, 2) rounds to the nearest cent — essential after multiplying or applying percentages, which create extra decimals.
  2. MROUND(value, 0.05) rounds to the nearest nickel; use 0.10 or 0.25 for other cash denominations.
  3. ROUND(value, 0) gives whole dollars for estimates.
  4. Round at the point of calculation, not just with display formatting — formatting hides decimals but stored values still carry them, causing totals that look off by a cent.

Formatting is not rounding. Setting a cell to 2 decimal places only changes what you see — the underlying value keeps its full precision, so column sums can be a penny off. Wrap the value in ROUND to fix the stored number.

Try it: interactive demo

Live demo

Raw amount.

Cent · Nickel · Dollar

Variations

Nearest nickel

Cash rounding:

=MROUND(A2, 0.05)

Whole dollars

Estimates:

=ROUND(A2, 0)

Round a total

Tax then round:

=ROUND(A2 * 1.0825, 2)

Pitfalls & errors

Round the value, not just the view. Number formatting hides decimals but doesn’t remove them — totals can drift a cent.

Round once, at the end. Rounding intermediate steps can compound small errors.

Banker’s rounding. Excel rounds .5 up; some accounting rules round to even — check your standard.

Practice workbook

📊
Download the free Round to Cents and Currency Units practice workbook
A currency-rounding sheet with the nickel, whole-dollar, and tax-total variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I round money to cents in Excel?
Use =ROUND(A2, 2). Two decimal places rounds to the nearest cent and fixes floating-point pennies from multiplication.
How do I round cash to the nearest nickel?
Use =MROUND(A2, 0.05). Change the multiple to 0.10 or 0.25 for other denominations.
Why are my totals off by a cent?
Number formatting hides decimals but keeps the full value. Wrap amounts in ROUND so the stored values match what you see.

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 · Roundup & rounddown · Sales tax by region

Function references: ROUND · MROUND