Skip to content
Blog/Excel
Excel

How to Use ROUND, ROUNDUP, and ROUNDDOWN in Excel

ROUND, ROUNDUP, and ROUNDDOWN control decimal precision in Excel. Use them for pricing, budgets, forecasts, and clean reporting.

Do this with AI

Try Griddy free

Start in your browser. Also works with Excel and Google Sheets.

By Justin Freels//5 min read

ROUND, ROUNDUP, and ROUNDDOWN control how many decimal places a number should keep. Use them when pricing, budgets, forecasts, percentages, or reports need clean numbers instead of long decimals.

The key difference is direction: ROUND goes to the nearest value, ROUNDUP always moves away from zero, and ROUNDDOWN always moves toward zero.

The syntax

fx
=ROUND(number, num_digits)
fx
=ROUNDUP(number, num_digits)
fx
=ROUNDDOWN(number, num_digits)
  • number - the value to round
  • num_digits - how many digits to keep

Use 2 for cents, 0 for whole numbers, and negative values to round to tens, hundreds, or thousands.

fx
=ROUND(125.487, 2)

returns 125.49.

fx
=ROUND(125.487, 0)

returns 125.

fx
=ROUND(125.487, -1)

returns 130.

Example: clean a budget forecast

Suppose a forecast calculates monthly software cost after growth assumptions. The raw result in D2 is:

1847.6382

For a management budget, whole dollars are easier to read.

Step 1. Round to the nearest dollar

fx
=ROUND(D2, 0)

The result is 1848.

Step 2. Round up when you want a conservative cost estimate

fx
=ROUNDUP(D2, 0)

This also returns 1848, but the intent is different. ROUNDUP always moves costs upward, which is often the safer planning assumption.

Step 3. Round down when you want a conservative revenue estimate

fx
=ROUNDDOWN(D2, 0)

This returns 1847.

TIP

For forecasts, rounding costs up and revenue down can make the plan more conservative.

Rounding vs formatting

Cell formatting only changes what you see. The underlying value can still contain extra decimals.

Rounding changes the actual value returned by the formula.

That difference matters when rounded values feed other formulas. If exact math matters, keep detailed values in helper columns and round only the final reporting output.

Common issues

IssueCauseFix
Totals do not match visible rowsCells are formatted, not roundedUse ROUND in the formulas that feed the report
Cents disappearnum_digits is 0Use 2 for currency cents
Unexpected tens or hundredsnum_digits is negativeUse positive digits for decimals
Forecast is too optimisticRevenue is rounded upConsider ROUNDDOWN for revenue assumptions

The Griddy way

Rounding rules get messy fast when one sheet mixes revenue, costs, margins, and percentages.

"Round costs up to whole dollars, round revenue down to whole dollars, and keep margin percentages to one decimal place"

Griddy can apply the right rounding formulas across the model while leaving the underlying structure readable.

Choose a rounding policy

Rounding is a reporting decision, not just a formatting choice. ROUND changes the returned value to the nearest place; ROUNDUP moves away from zero; and ROUNDDOWN moves toward zero. A negative num_digits rounds to the left of the decimal, such as the nearest ten. Use a positive value for decimal places.

Keep the unrounded source values when calculations need precision, and round at the reporting or invoice boundary unless your business rule explicitly requires line-level rounding. Otherwise, adding already-rounded line items can produce a different total than rounding the final sum. For taxes, commissions, or billing, record the policy and apply it consistently across the workbook. Cell formatting alone changes appearance; it does not change the underlying value used by later formulas.

Sources

Do this with AI

Turn the instructions into a finished spreadsheet.

Tell Griddy what you need in plain English, then inspect and keep editing the result in the browser, Excel, or Google Sheets.

Try Griddy freeStart in your browser. No download required.
Also works withExcel Google Sheets

Use this on real templates

Apply rounding rules to real budgets

Rounding matters in operating plans where costs, revenue, and margin should be presented cleanly without hiding the underlying math.

Finance