FLOOR.MATH
The FLOOR.MATH
function in Google Sheets rounds a number down to the nearest integer multiple of the specified significance. The function supports negative numbers rounding toward or away from 0, depending on the mode. Learn how to use this function effectively with our comprehensive guide.
Function Syntax and Parameters
Syntax: FLOOR.MATH(number, [significance], [mode])
Parameters:
number
: The number to be rounded.significance
: [Optional] The multiple to which the number should be rounded. If omitted, the significance is set to 1.mode
: [Optional] Determines how negative numbers are rounded. If omitted, the mode is set to 0 or towards zero.
Step-by-Step Tutorial
-
Using
FLOOR.MATH
with default parameters:- Example:
=FLOOR.MATH(7.8)
- Result:
7
- Example:
-
Using
FLOOR.MATH
with specified significance:- Example:
=FLOOR.MATH(13, 5)
- Result:
10
- Example:
-
Using
FLOOR.MATH
with specified mode:- Example:
=FLOOR.MATH(-7.8, , 1)
- Result:
-8
- Example:
Use Cases and Scenarios
- Time Calculation: Round down time values to the nearest hour or minute.
- Inventory Management: Determine the number of items that can fit into certain packaging sizes.
- Financial Modeling: Round down monthly expenses or interest rates.
Related Functions
FLOOR
: Rounds a number down to a certain significance level.CEILING
: Rounds a number up to a certain significance level.