Do you need to round numbers to the nearest 10, 25, or 50 cents in Excel? Here’s a simple guide to help you use Excel’s rounding functions with easy examples and formulas.
Understanding the ROUND Functions in Excel
Excel offers three functions to round numbers:
- ROUND - rounds to the nearest specified number.
- ROUNDDOWN - always rounds down.
- ROUNDUP - always rounds up.
You can choose the best function depending on whether you want a regular round, a round-down, or a round-up.
Example of Using the ROUND Function
Let’s say you have numbers in column A and want to round them based on the precision in row 1. You can use this formula across the whole table:

This formula rounds the number in cell A2 to the precision set in cell B1. Mixed references help you apply the formula across your data without retyping.
Rounding to the Nearest 10 Cents

To round a number up to the nearest 10 cents:
First, remove decimals by multiplying by 100.
= B2*100

- Then, round up to the nearest 10 with: =ROUNDUP(B2*100, -1)
- Divide the result by 100 to return to cents =ROUNDUP(B2*100, -1)/100

Rounding to 25 Cents
To round to the nearest 25 cents, multiply by 40 (since 1000/25 = 40)
=ROUNDUP(B2*40;-1)/40

Rounding to 50 Cents
For rounding up to the next 50 cents, use 20 as the multiplier (1000/50 = 20)

Rounding by Tenths, Hundredths, or Thousandths
You can also round numbers to other decimal places, such as tenths, hundredths, or thousandths.

By using these techniques, you can round your values to the nearest 10 in Excel or any other cent amount. Practice with the functions above to find which rounding option works best for your data.