Microsoft Support
support.microsoft.com › en-us › office › floor-function-14bb497c-24f2-4e04-b327-b0b4de5a8886
FLOOR function - Microsoft Support
The FLOOR function in Excel rounds a specified number down to the nearest specified multiple of significance.
Floor function in VBA code
I found Round() but I can't find a Floor() math function within the VBA code side of the excel. For those not math inclined, Floor(5.65) = 5, whereas... More on mrexcel.com
Unexpected results of FLOOR function with time values
I have a difficulties using the FLOOR function with time values. It mostly works, however if the first parameter is calculated, results are not always as expected. Example: When I round down a value "10:00" using a formula =FLOOR("10:00"-TIME(9;30;0); "0:30"), the result is "0:30" as expected... More on mrexcel.com
What is FLOOR example in Excel?
=FLOOR(A1,5) where A1 is the cell containing the original number. This formula will round the number down to the nearest multiple of 5. For example, if A1 contains the number 7.3, the formula would return the value 5.
ajelix.com
ajelix.com › home › resources › formulas and functions › floor function ms excel
How To Use FLOOR Function in Excel Guide With Examples - Ajelix
How do I use the FLOOR function?
To use the FLOOR function, you need to provide two arguments (the number and significance value). For instance, =FLOOR(16.9, 5) will round 16.9 down to the nearest multiple of 5, resulting in 15.
wps.com
wps.com › home › blog › excel resources › how to use floor function in excel (simplest steps with examples)
How to Use Floor Function in Excel (Simplest Steps with Examples)
How does FLOOR function work?
The function rounds a number down to the nearest multiple of a specified value. It takes two arguments, the number and the multiple. For example, if you use the function FLOOR(10,2) it will return 8. This is because 8 is the nearest multiple of 2 to 10.
ajelix.com
ajelix.com › home › resources › formulas and functions › floor function ms excel
How To Use FLOOR Function in Excel Guide With Examples - Ajelix
Videos
02:04
CEILING and FLOOR Excel Functions (with examples) - YouTube
Microsoft Excel - Using the CEILING and FLOOR functions
01:31
How to Use the FLOOR.MATH Function in Excel to Round Data to a ...
01:24
How to use FLOOR and CEILING Function of Excel | Excel Amazing ...
01:30
FLOOR Function | Quick Excel Tips - YouTube
03:35
CEILING, FLOOR, ROUND Functions in Microsoft Excel - YouTube
DataCamp
datacamp.com › tutorial › excel-floor
Excel FLOOR(): How to Round Down Numbers in Excel | DataCamp
July 1, 2025 - Round down with precision using Excel’s FLOOR() function.
MrExcel
mrexcel.com › forums › question forums › excel questions
Floor function in VBA code | MrExcel Message Board
August 14, 2006 - Sub test() Dim result As Long Dim starttime As Double Dim i As Long starttime = Timer For i = 1 To 3000000 'result = Int(5.65) - 1 * (Int(5.65) > i) result = Application.WorksheetFunction.Floor(5.65, 1) Next i Debug.Print Timer - starttime starttime = Timer For i = 1 To 3000000 result = Int(5.65) - 1 * (Int(5.65) > i) 'result = Application.WorksheetFunction.Floor(5.65, 1) Next i Debug.Print Timer - starttime End Sub
Microsoft Support
support.microsoft.com › en-us › office › floor-math-function-c302b599-fbdb-4177-ba19-2c2b1249a2f5
FLOOR.MATH function - Microsoft Support
Syntax: FLOOR.MATH(number, significance, mode)
MrExcel
mrexcel.com › forums › question forums › excel questions
Unexpected results of FLOOR function with time values | MrExcel Message Board
August 22, 2023 - I would like to understand why the FLOOR function does not work as expected sometimes. Click to expand... Hi, the problem is almost certainly caused by "floating point rounding errors" (an internet search will reveal lots of information on the subject) - the TIME() function appears to round these errors better so you could jump through a few hoops like this to get to the right answer. Excel Formula: =FLOOR(LET(t,TIME(8,0,0)-"07:30",TIME(HOUR(t),MINUTE(t),SECOND(t))),"00:30") Upvote 0 ·
Ajelix
ajelix.com › home › resources › formulas and functions › floor function ms excel
How To Use FLOOR Function in Excel Guide With Examples - Ajelix
March 14, 2024 - The FLOOR function in Microsoft Excel is a mathematical function that can be used to round a number down to the nearest integer.
Wall Street Mojo
wallstreetmojo.com › home › all blogs › excel resources › floor function in excel
FLOOR Function in Excel (Formula, Examples) | How to Use?
December 20, 2024 - This formula in Excel always takes two arguments: the number and the significance. Both are required. The significance means the factor that will help find a value, the nearest multiple of the number. Number: It is the number that we want to round. Significance: It is the multiple or factor we want to round the number. If the price of a given commodity is $6.42, and we want to round it down to the nearest value divisible by 5 cents, we can use the FLOOR function.
ExtendOffice
extendoffice.com › excel tips › excel functions › excel floor function
How to use the Excel FLOOR function
October 11, 2024 - Based on the values in table C3:G4, which contains the numbers and the corresponding specified significance, please use FLOOR function to round down and get the nearest multiples as this: =FLOOR(C3,C4) //or directly use a number in the formula =FLOOR(10,1) Press Enter key to get the first result, then drag autofill handle right to get other results. Excel FACT Function The FACT function eturns the factorial of a given number.
Top answer 1 of 3
3
This might help:
FLOOR function - Rounds a number down, toward zero
FLOOR.PRECISE function - Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.
=FLOOR(-3,-2) is -2
=FLOOR.PRECISE(-3,2) is -4
2 of 3
1
Using negative significance revert behavior.
From documentation:
If number is positive and significance is negative, FLOOR returns the #NUM! error value.
If the sign of number is positive, a value is rounded down and adjusted toward zero.
If the sign of number is negative, a value is rounded down and adjusted away from zero. If number is an exact multiple of significance, no rounding occurs.
However, testing positive and negative number and significance I get following result:
- Significance > 0:
- Any number: Round down (toward negative infinity)
- Significance < 0:
- Number < 0: Round up (toward positive infinity)
- Number >= 0:
#NUM!
- Significance = 0:
- Number = 0:
0 - Number <> 0:
#DIV!
- Number = 0:
SimonsezIt
simonsezit.com › article › how-to-use-floor-function-in-excel
How to Use FLOOR Function in Excel? 2 Easy Ways
May 19, 2025 - The FLOOR function is very similar to the ROUNDDOWN function. Whereas, the ROUNDDOWN function rounds down the value to its nearest significant digits, the FLOOR function rounds down the number to its nearest multiple of significance. In previous versions of Excel, the syntax of the FLOOR function was: