Floor
FLOOR Function¶
The FLOOR function in Excel rounds a number down, towards zero, to the nearest specified multiple. This can be useful
for standardizing values or ensuring they align with a specific interval.
Syntax:¶
FLOOR(number, significance)
- number: The numeric value that you want to round down.
- significance: The multiple to which the number is to be rounded. The value must have the same sign as the number or an error will occur.
Examples:¶
=FLOOR(7.2, 2)would return6, since7.2is rounded down to the nearest multiple of2.=FLOOR(-7.2, 2)would return-8, as-7.2is rounded down to the nearest multiple of2(directionally towards zero).=FLOOR(6.5, 0.5)returns6.5, because6.5is already aligned with a multiple of0.5.=FLOOR(5.7, 1)returns5, rounding5.7down to the nearest whole number.
Usage Notes:¶
- If the significance argument is omitted, Excel defaults it to
1, and the number will be rounded to the nearest integer below it. - The function will raise an error if the number and significance have opposite signs.
- Negative numbers are rounded down (towards zero) to the nearest multiple with the appropriate magnitude.
- The
FLOORfunction is particularly useful for standardizing numeric values to a given interval, often in finance, engineering, and pricing calculations.
Tip: Consider using
FLOOR.MATHorFLOOR.PRECISEfor additional flexibility and more advanced control over rounding operations!