Excel Floor Function

If you just need to excel floor function 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 =FLOOR(number, significance) — it rounds down to the previous multiple of your step, so =FLOOR(213, 50) returns 200.

Syntax

=FLOOR(number, significance)

Arguments

ArgumentDescription
numberrequiredThe value to round down.
significancerequiredThe multiple to round down to.

Related functions

CEILINGMROUNDROUNDDOWN
Annotated stepsExcel
1

Select the cell for the "complete units" figure and type =FLOOR(.

2

Select the raw total, then type a comma.

3

Enter the unit size — the box, band or block the business counts in.

4

Press Enter. Subtract the result from the original to get the leftover remainder if you need 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

FLOOR is CEILING's mirror: it rounds down to the previous multiple of a chosen step. It answers "how many complete units fit" — full boxes packed, whole bands qualified for, complete hours worked — rather than a decimal precision. FLOOR.MATH is the modern variant with an explicit mode for negative values. As with CEILING, a significance of zero returns #DIV/0!, and in the classic form the two arguments must share a sign. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “excel floor function”. 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

Packing 213 items into boxes of 50, =FLOOR(213, 50) returns 200 — four full boxes' worth, with the remainder handled separately. A loyalty tier awarded per complete 500 points: =FLOOR(1780, 500) returns 1500. Paid in complete 15-minute blocks, =FLOOR(A2, "0:15") drops the partial block. FLOOR turns a raw total into the number of complete units behind it, which is the figure packing, tiering and time-block billing all actually run on. 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

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “excel floor function”: 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

  • Using FLOOR to get the integer part of a number — INT or TRUNC say that more clearly and need no second argument.
  • A significance of 0, which returns #DIV/0!.
  • Applying FLOOR to a figure customers are charged on; rounding down systematically under-bills, which is usually the opposite of the intent.

Frequently asked questions

What is the difference between FLOOR and INT?

INT takes the integer part; FLOOR rounds down to any multiple you name. =FLOOR(213, 50) is 200, while INT(213) is just 213.

Why does FLOOR return #DIV/0!?

The significance argument is 0. There is no "previous multiple of zero", so Excel errors rather than guessing.

How do I get the remainder after flooring?

Subtract: =A2 - FLOOR(A2, 50). MOD does the same thing in one step — =MOD(A2, 50).