CEILING Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel CEILING function rounds a number up to the nearest multiple of a significance you choose — the classic way to round prices up to the next nickel, dollar, or any increment.


Quick answer:
=CEILING(23, 5) up to next multiple of 5 = 25

Syntax

=CEILING(number, significance)
ArgumentDescription
numberRequiredThe value you want to round up.
significanceRequiredThe multiple to round up to. For positive numbers it must be positive; mixing signs causes an error.

How to use it

CEILING rounds up (away from zero) to the next multiple of significance:

=CEILING(23, 5) // next multiple of 5 = 25
=CEILING(2.4, 1) // next whole = 3
=CEILING(4.42, 0.05) // next nickel = 4.45

For negative numbers, classic CEILING rounds toward zero when significance is negative. The newer CEILING.MATH handles negatives more predictably and lets significance be omitted.

Opposite signs error. If number is positive and significance is negative (or vice-versa), classic CEILING returns an error. Match the signs, or switch to CEILING.MATH.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free CEILING 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

What does CEILING do differently from ROUNDUP?
ROUNDUP rounds up to a number of decimal digits; CEILING rounds up to the nearest multiple you specify, like the next 5 or next 0.25.
Why does CEILING return an error?
Because number and significance have opposite signs. Match them, or use CEILING.MATH, which doesn't have this restriction.
How does CEILING handle negative numbers?
With a negative significance it rounds toward zero (less negative). For consistent “round away from zero” behavior on negatives, use CEILING.MATH with its mode argument.
Should I use CEILING or CEILING.MATH?
CEILING.MATH (Excel 2013+) makes significance optional, defaulting to 1, and adds a mode argument for negatives. Use it for new work unless you need backward compatibility.

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: FLOOR · CEILING.MATH · MROUND · ROUNDUP · ISO.CEILING