FLOOR rounds a number down to the nearest multiple of a value you specify — the mirror image of CEILING.
FLOOR rounds a number down to the nearest multiple of a "significance" value you choose — rounding down to the nearest 5, nearest 100, or nearest 0.25.
Use it whenever you need a conservative estimate that never rounds in your favor — like a forecast that should never overstate expected revenue.
=FLOOR(number, significance)| Argument | Description |
|---|---|
| number required | The value to round down. |
| significance required | The multiple to round down to. |
=FLOOR(22,5)Returns 20.
=FLOOR(1430,100)Returns 1400 — a conservative budget estimate.
=FLOOR(4.20,0.25)Returns 4.00.
=FLOOR(B2,1000)Rounds a projected revenue figure down to the nearest thousand, avoiding an overly optimistic forecast.
Like CEILING, FLOOR rounds to a multiple, not to a number of decimal places.
ExcelPro has hands-on FLOOR exercises built into real job scenarios — free to start.
Try FLOOR exercises →