CEILING Formula in Excel

If you just need to ceiling formula in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =CEILING(number, significance) — it rounds up to the next multiple of your step, so =CEILING(213, 50) returns 250.

On this page8

Syntax

=CEILING(number, significance)

Arguments

Argumentrequired / optionalDescription
numberrequiredThe value to round up.
significancerequiredThe multiple to round up to — 0.25, 50, 1000 and so on.

Related functions

FLOORMROUNDROUNDUP
Annotated stepsExcel
1

Click the cell that should hold the billed or ordered quantity.

2

Type =CEILING( and select the raw measured value.

3

Type a comma and the band size the business actually charges or ships in.

4

Press Enter; every value now lands on the next band up, never below it.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

CEILING rounds a value up to the next multiple of a step you choose. Where ROUNDUP works in decimal places, CEILING works in business units: the next 50 kilos, the next 0.25 hours, the next full box. Modern Excel also offers CEILING.MATH, which adds a mode argument controlling how negative numbers behave; the classic CEILING is still the one most templates and older workbooks use. The step is required, and passing zero returns #DIV/0! because "the next multiple of nothing" has no answer. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “ceiling formula in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Freight is billed in 50 kg bands, so a 213 kg shipment costs =CEILING(213, 50), which returns 250. Billing consulting in quarter hours: =CEILING(1.1, 0.25) returns 1.25. Sizing a server plan sold in blocks of 100 GB, =CEILING(342, 100) returns 400. CEILING encodes a billing or packing rule directly in the formula, so the spreadsheet charges what the business actually charges instead of what the raw measurement says. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. The short version of “ceiling formula in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Passing 0 as the significance, which returns #DIV/0!.
  • Using CEILING where the requirement is "nearest", not "next up" — that is MROUND, and CEILING will systematically overcharge.
  • Mixing signs between number and significance in the classic CEILING, which errors; CEILING.MATH handles negatives with an explicit mode instead.

Frequently asked questions

What is the difference between CEILING and ROUNDUP?

ROUNDUP rounds up to a number of decimal places; CEILING rounds up to a multiple. To reach the next 25, only CEILING can express it.

What is CEILING.MATH?

A newer variant that takes an optional mode argument for negative numbers, letting you choose whether they round away from or toward zero. For positive values it behaves the same as CEILING.

How do I round up to the next whole hour?

On a decimal number of hours use =CEILING(A2, 1). On a real time value use =CEILING(A2, "1:00") and format the result as time.