FLOOR Function Excel
Associated Files Download Links
In this Article
This Excel Tutorial demonstrates how to use the Excel FLOOR Function in Excel to round a number down, with formula examples.
FLOOR Function Description:
The FLOOR Function Rounds a number down, to the nearest specified multiple.
Formula Examples:
Example | Formula | Result |
---|---|---|
1 | =FLOOR(C5,D5) | 0 |
2 | =FLOOR(C6,D6) | 5 |
3 | =FLOOR(C7,D7) | 0.1 |
4 | =FLOOR(C8,D8) | -20 |
5 | =FLOOR(C9,D9) | -0.2 |
Syntax and Arguments:
The Syntax for the FLOOR Formula is:
1 |
=FLOOR(number,significance) |
Function Arguments ( Inputs ):
number – A number.
significance – The multiple to which to round the number. The sign much match the number. So if the number is negative, the significance must also be negative.
Additional Notes
Use the ROUND Function to round a number down to the nearest multiple. Simply enter the number to round (or a cell reference containing the number). Then enter the multiple to round to.
FLOOR Examples in VBA
You can also use the FLOOR function in VBA. Type:
application.worksheetfunction.floor(number,significance)
For the function arguments (number, etc.), you can either enter them directly into the function, or define variables to use instead.
Return to the List of all Functions in Excel
How to use the FLOOR Function in Excel:
To use the AND Excel Worksheet Function, type the following into a cell:
=AND(
After entering it in the cell, notice how the AND formula inputs appear below the cell:
You will need to enter these inputs into the function. The function inputs are covered in more detail in the next section. However, if you ever need more help with the function, after typing “=FLOOR(” into a cell, without leaving the cell, use the shortcut CTRL + A (A for Arguments) to open the “Insert Function Dialog Box” for detailed instructions:
For more information about the FLOOR Formula visit the
Microsoft Website.