Excel FLOOR.MATH Function – Complete Tutorial with Examples

Introduction to FLOOR.MATH

The FLOOR.MATH function in Excel rounds a number down to the nearest integer or to the nearest multiple of significance. It’s part of Excel’s mathematical functions and provides more control over rounding behavior than the older FLOOR function.

FLOOR.MATH(number, [significance], [mode])

Arguments Explained

ArgumentRequired/OptionalDescriptionnumberRequiredThe number you want to round down.significanceOptionalThe multiple to which you want to round. Default is 1.modeOptionalControls rounding direction for negative numbers. Use 0 for away from zero, or 1 for toward zero. Default is 0.
Argument Required/Optional Description
number Required The number you want to round down.
significance Optional The multiple to which you want to round. Default is 1.
mode Optional Controls rounding direction for negative numbers. Use 0 for away from zero, or 1 for toward zero. Default is 0.

Note: FLOOR.MATH is available in Excel 2013 and later versions. For earlier versions, use the FLOOR function, but be aware of differences in how negative numbers are handled.

Practical Examples of FLOOR.MATH

Example 1: Basic Rounding Down

Rounding down 24.7 to the nearest integer:

=FLOOR.MATH(24.7)
Result: 24


The significance and mode arguments are optional. If only the number argument is used the FLOOR.MATH function will make the number go down (to the floor) to the next integer.

Excel FLOOR.MATH Table 1

Example 2: Rounding to Nearest Multiple

Rounding down 24.7 to the nearest multiple of 5:

=FLOOR.MATH(24.7, 5)
Result: 20
Example 3: Rounding Negative Numbers

Rounding down -24.7 to the nearest integer:

=FLOOR.MATH(-24.7)
Result: -25
Example 4: Rounding Negative Numbers with Mode Parameter

Rounding down -24.7 to the nearest integer with mode=1 (toward zero):

=FLOOR.MATH(-24.7, 1, 1)
Result: -24


Using the Mode argument

Any nonzero value used for the mode argument will reverse the normal direction for the FLOOR.MATH function by making a negative number round up.

Excel FLOOR.MATH function used with Mode argument

Example 5: Financial Rounding

Rounding down $24.37 to the nearest nickel (0.05):

=FLOOR.MATH(24.37, 0.05)
Result: 24.35


Lowered to the nearest penny:
FLOOR.MATH lowered to nearest penny

Lowered to the nearest nickel:
Excel FLOOR.MATH lowered to the nearest nickel

Lowered to the nearest quarter:
Excel FLOOR.MATH lowered to the nearest quarter

Lowered to the nearest hundred dollars:
Excel FLOOR.MATH lowered to nearest hundred

Lowered to the nearest thousand dollars:
FLOOR.MATH lowered to nearest thousand

Tip: When working with inventory or quantities, use FLOOR.MATH to ensure you don’t overestimate available resources.

Use FLOOR.MATH to determine the number of complete sets.

The FLOOR.MATH function can also be used to determine how many complete sets there are in a given number.  For example, how many full dozens are there in 28, how many full grosses are there in 300, how many full days are there in 125 hours, etc.  Looking at row 2 in the table below we have 65 items.  We want to know how many full sets of 12 are in 65.  We will first use the FLOOR.MATH function to round down to the nearest multiple of 12.  We will use the formula =FLOOR.MATH(A2,B2) to round down the value 65 to the next multiple of 12 which gives us a result of 60.  Now we can take that value and divide it by the number of items in a complete set which is 12.  This gives us a result of 5 which is the number of complete sets in 65. The formulas entered in column C are displayed in column D.

Excel FLOOR.MATH computes complete sets

 

Try It Yourself

Experiment with the FLOOR.MATH function using different values:

Common Use Cases

1. Inventory Management

When calculating how many complete units can be made from available materials, FLOOR.MATH ensures you don’t overestimate production capacity.

2. Financial Calculations

When working with financial data, you might need to round prices down to comply with certain pricing policies or to stay within budget constraints.

3. Data Analysis

When creating histogram bins or grouping data, FLOOR.MATH helps establish lower bounds for each category.

4. Time Calculations

When calculating complete time periods that have passed (like completed hours or days), FLOOR.MATH gives you the appropriate value.

Comparison with Other Rounding Functions

Function Purpose Example
FLOOR.MATH Rounds down to nearest multiple with control for negative numbers =FLOOR.MATH(4.8, 1) → 4
CEILING.MATH Rounds up to nearest multiple with control for negative numbers =CEILING.MATH(4.2, 1) → 5
ROUND Rounds to specified number of digits =ROUND(4.25, 1) → 4.3
ROUNDUP Always rounds up to specified number of digits =ROUNDUP(4.2, 0) → 5
ROUNDDOWN Always rounds down to specified number of digits =ROUNDDOWN(4.8, 0) → 4

Fun Facts about Rounding and FLOOR.MATH

Floor in Mathematics

The floor function in mathematics, written as ⌊x⌋, gives the greatest integer less than or equal to x. This is exactly what FLOOR.MATH does when the significance is 1!

Excel Evolution

FLOOR.MATH was introduced in Excel 2013 to provide better compatibility with international standards and improve the handling of negative numbers compared to the original FLOOR function.

The Opposite of Ceiling

Just as a ceiling is above you, the mathematical floor is below you – hence the name for this function that always rounds downward!

Computer Science Connection

Floor and ceiling functions are fundamental in computer science algorithms, particularly in areas like memory allocation, array indexing, and efficiency calculations.

Language Consistency

Excel introduced the .MATH suffix to both FLOOR and CEILING functions to create a consistent pair of functions that behave predictably across all types of numbers.

© 2025 Excel Function Tutorials | Last Updated: February 16, 2025

Review Your Cart
0
Add Coupon Code
Subtotal