The FLOOR function takes two arguments, number and significance. Number is the numeric value to round down. The significance argument is the multiple to which number should be rounded. In most cases, significance is provided as a numeric value, but FLOOR can also understand time entered as text like “0:15”. See the example below. FLOOR works like the MROUND function, but unlike MROUND, which rounds to the nearest multiple, FLOOR always rounds down. Note: the FLOOR function is officially listed as a compatibility function, replaced by FLOOR.MATH and FLOOR.PRECISE.

Examples

The formulas below show how FLOOR rounds down values to a given multiple: To round a number in A1 down to the nearest multiple of 5, you can use a formula like this:

Round down to nearest 5

To round a number in A1 down to the nearest multiple of 5:

Round pricing down to end with .99

FLOOR can be used to set pricing after currency conversion, discounts, etc. For example, the formula below will round a number in A1 down to the next whole dollar, then subtract 1 cent, to return a price like $2.99, $5.99, $49.99, etc. You can round pricing up to end in .99 with a similar formula based on the CEILING function:

Round time down to nearest 15 minutes

FLOOR understands time formats, and can be used to round time down to a given multiple. For example, to round a time in A1 down to the previous 15 minute unit, you can use FLOOR like this:

Other rounding functions in Excel

To round normally, use the ROUND function. To round to the nearest multiple, use the MROUND function. To round down to the nearest specified place, use the ROUNDDOWN function. To round down to the nearest specified multiple, use the FLOOR function. To round up to the nearest specified place, use the ROUNDUP function. To round up to the nearest specified multiple, use the CEILING function. To round down and return an integer only, use the INT function. To truncate decimal places, use the TRUNC function.

Notes

FLOOR works like the MROUND function, but FLOOR always rounds down. If a number is already an exact multiple of significance, no rounding occurs. FLOOR rounds positive numbers down toward zero. If number is negative, and significance is positive, FLOOR rounds away from zero. If number and significance are both negative, FLOOR rounds towards zero. For more control over how FLOOR rounds negative numbers, see the FLOOR.MATH function.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.