ROUNDUP Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel ROUNDUP function rounds a number away from zero to a set number of digits — it always pushes the value up in magnitude, never down.


Quick answer:
=ROUNDUP(3.14159, 2) = 3.15

Syntax

=ROUNDUP(number, num_digits)
ArgumentDescription
numberRequiredThe number you want to round up (away from zero).
num_digitsRequiredHow many digits to round to. Positive = decimal places, 0 = nearest whole number, negative = left of the decimal (tens, hundreds, ...).

How to use it

ROUNDUP shares ROUND's (number, num_digits) syntax but always rounds away from zero — any non-zero remainder bumps the result up in magnitude:

=ROUNDUP(3.14159, 2) // 2 decimals = 3.15
=ROUNDUP(2.1, 0) // nearest whole = 3
=ROUNDUP(-2.1, 0) // away from zero = -3

Negative numbers round to the more negative value because “away from zero” ignores sign. A negative num_digits rounds up to the nearest ten, hundred, and so on.

ROUNDUP vs CEILING: ROUNDUP rounds away from zero to a digit place; CEILING rounds up to the nearest multiple of a value you choose. Use CEILING for “round up to the next $5” type rules.

Try it: interactive demo

Live demo

Pick a ROUNDUP example to see the formula and its result.

Result:

Practice workbook

📊
Download the free ROUNDUP practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

How is ROUNDUP different from ROUND?
ROUND goes to the nearest digit (half away from zero), while ROUNDUP always rounds away from zero — even 3.001 rounds up to 3.01 at 2 decimals.
Does ROUNDUP round negative numbers toward zero?
No — “up” means away from zero, so =ROUNDUP(-2.1, 0) returns -3, the more negative value.
What does a negative num_digits do in ROUNDUP?
It rounds up to the left of the decimal: =ROUNDUP(1201, -2) rounds up to the nearest hundred = 1300.
ROUNDUP vs CEILING — which should I use?
ROUNDUP rounds to a number of digits (decimals, tens, hundreds). CEILING rounds up to the nearest multiple of any value, like the next 0.25 or next 5.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: ROUND · ROUNDDOWN · CEILING · MROUND · TRUNC