Quick Answer

CEILING Function

Rounds a number up to the nearest multiple of significance.

✓ Excel✓ Google SheetsExcel All versions

Syntax

CEILING
(number, significance)

Parameters

ParameterDescriptionRequired
numberThe value you want to round.Required
significanceThe multiple to which you want to round. In classic CEILING, number and significance should share the same sign.Required

Basic Example

Round a price up to the nearest 5 cents

=CEILING(4.42, 0.05)
Result4.45

4.45 is the first multiple of 0.05 that is greater than or equal to 4.42.

Advanced Examples

Example 1: Round up to the next ten

Pack quantities into boxes of 10.

Round 123 up to a multiple of 10.

=CEILING(123, 10)
Result: 130
130 is the next multiple of 10 at or above 123.

Example 2: Negative numbers round toward zero

Rounding -4.3.

CEILING rounds toward positive infinity, so negatives move toward zero.

=CEILING(-4.3, 1)
Result: -4
The smallest multiple of 1 that is ≥ -4.3 is -4.

How CEILING Works

CEILING finds the smallest multiple of significance that is greater than or equal to number (rounding toward positive infinity). In the classic version, if number is positive and significance is negative, Excel returns #NUM!; use CEILING.MATH to lift that restriction.

1
Select the cell
Click the cell for the result.
2
Enter the formula
Type =CEILING(number, significance).
3
Press Enter
The rounded-up value appears.

Important Notes & Limitations

  • If number is positive and significance is negative, classic CEILING returns #NUM! (CEILING.MATH does not).

  • CEILING rounds toward positive infinity, so negative numbers move toward zero, which can surprise users expecting 'more negative' rounding.

  • A significance of 0 returns 0 rather than an error.

Common Errors & Fixes

#NUM!Number is positive while significance is negative (classic CEILING).

Fix: Make the signs match, or switch to CEILING.MATH.

#VALUE!A non-numeric argument was supplied.

Fix: Use numeric values or numeric cell references.

Download Practice File

Practice CEILING with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the CEILING function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

What is the difference between CEILING and CEILING.MATH?
CEILING.MATH (Excel 2013+) allows any sign combination and adds a mode argument for controlling negative rounding; classic CEILING is stricter about signs.
Does CEILING round away from zero?
It rounds toward positive infinity, so positives go up and negatives go toward zero (e.g. CEILING(-4.3,1) = -4).
How do I round up to whole dollars?
Use =CEILING(value, 1) or =CEILING(value, 0.01) for cents.