
The Excel FLOOR function rounds a given number down to the nearest specified multiple. FLOOR works like the MROUND function, but FLOOR always rounds down.
Round a number down to the nearest specified multiple
A rounded number.
=FLOOR (number, multiple)
The Excel FLOOR function rounds a number down to a given multiple. For example, the following could be used to round a price in A1 down to the nearest 5 dollars.
=FLOOR(A1,5)
FLOOR can be a can be a useful function to set pricing after currency conversion, discounts, etc. For example, the formula below will round a value in A1 down to the nearest 1 dollar, then subtract 1 cent, to get a price like $2.99, $5.99, $49.99, etc.
=CEILING(A1,1) - 0.01
If you need more control over how FLOOR rounds negative numbers, see the FLOOR.MATH function.
The FLOOR function differs from the FLOOR.MATH function in these ways:

The Excel FLOOR function rounds a given number down to the nearest specified multiple. FLOOR works like the MROUND function, but FLOOR always rounds down.
Round a number down to the nearest specified multiple
A rounded number.
=FLOOR (number, multiple)
The Excel FLOOR function rounds a number down to a given multiple. For example, the following could be used to round a price in A1 down to the nearest 5 dollars.
=FLOOR(A1,5)
FLOOR can be a can be a useful function to set pricing after currency conversion, discounts, etc. For example, the formula below will round a value in A1 down to the nearest 1 dollar, then subtract 1 cent, to get a price like $2.99, $5.99, $49.99, etc.
=CEILING(A1,1) - 0.01
If you need more control over how FLOOR rounds negative numbers, see the FLOOR.MATH function.
The FLOOR function differs from the FLOOR.MATH function in these ways: