Google Sheets
FLOOR function in Google Sheets
Rounds a number down to the nearest integer multiple of specified significance.
=FLOOR(value, [factor])FLOOR syntax and parameters
Two arguments, one required.
- valuenumberRequired
The value to round down to the nearest integer multiple of factor.
- factornumberOptional
[OPTIONAL - 1 by default] - The number to whose multiples value will be rounded. factor may not be equal to 0.
FLOOR examples
Formulas you'll actually reuse.
Round a 7.8h timesheet entry down to the billing half-hour:
=FLOOR(B2, 0.5)Result
7.5Gross price rounded down to the nearest 5 cents:
=FLOOR(B2 * 1.19, 0.05)Result
23.75
FLOOR in Excel
Same name — your formula ports as-is.
Try FLOOR in the playground
Edit the example — nothing to install.
Preloaded with the FLOOR formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- CSCReturns the cosecant of an angle provided in radians. .MathExcel
- SEQUENCEReturns an array of sequential numbers, such as 1, 2, 3, 4. .MathExcel
- AVERAGEIFReturns the average of a range depending on criteria.StatisticalExcel
- CELLReturns the requested information about the specified cell.InfoExcel
- FILTERReturns a filtered version of the source range, returning only rows or columns which meet the specified conditions.FilterExcel
- FINDReturns the position at which a string is first found within text.TextExcel