Formula Guide

The Excel ROUNDUP Function
explained simply

ROUNDUP always rounds a number further from zero, regardless of the digit that follows — useful when you must never underestimate.

ExcelPro · 4 min read · Updated June 2026
Contents
  1. What does ROUNDUP do?
  2. Syntax
  3. 4 examples
  4. Common mistakes
  5. FAQ

What does ROUNDUP do?

ROUNDUP rounds a number away from zero to a specified number of digits, no matter what the next digit is — 4.1 rounds up to 5 just as readily as 4.9 does.

This differs from ROUND, which rounds to the nearest value. ROUNDUP is the right choice whenever underestimating would cause a real problem — like rounding up the number of boxes needed to ship an order.

Syntax

=ROUNDUP(number, num_digits)
ArgumentDescription
number requiredThe value to round.
num_digits requiredHow many digits to round to. 0 rounds to a whole number, negative values round to tens/hundreds.

Examples

Example 1
Round up to 2 decimal places
=ROUNDUP(4.561,2)

Returns 4.57 — rounds away from zero even though 4.561 is closer to 4.56.

Example 2
Round up to a whole number
=ROUNDUP(12.1,0)

Returns 13 — any fractional amount rounds up to the next whole number.

Example 3
Round up to the nearest 10
=ROUNDUP(124,-1)

Returns 130 — negative num_digits rounds to tens, hundreds, etc.

Example 4
How many boxes are needed
=ROUNDUP(53/12,0)

53 items at 12 per box needs 5 boxes, not 4.42 — ROUNDUP guarantees you never under-order packaging.

Common mistakes

⚠️ Using ROUND when underestimating is risky

If rounding down would cause a shortfall (boxes, budget, staff needed), ROUNDUP is the safer choice over plain ROUND.

⚠️ Confusing num_digits sign

Positive num_digits rounds after the decimal point; negative rounds before it, into the tens/hundreds/thousands.

FAQ

Does ROUNDUP work with negative numbers?
Yes — it rounds away from zero, so -4.1 rounds to -5, not -4.
What is the difference between ROUNDUP and CEILING?
ROUNDUP rounds to a number of decimal places; CEILING rounds up to the nearest multiple of a specified value (like nearest 5 or nearest 0.25).

Practise ROUNDUP with real data

ExcelPro has hands-on ROUNDUP exercises built into real job scenarios — free to start.

Try ROUNDUP exercises →

Related formulas

ROUNDDOWN ROUND CEILING FLOOR