
The Excel FLOOR.MATH function rounds a number down to a specified multiple. Unlike the FLOOR function, FLOOR.MATH defaults to a multiple of 1, and provides explicit support for rounding negative numbers.
Round number down to nearest multiple
A rounded number
=FLOOR.MATH (number, [significance], [mode])
The Excel FLOOR.MATH function will round a number down to the nearest integer or given multiple of significance. By default, FLOOR.MATH rounds to the nearest integer, using a significance of 1. Positive numbers with decimal values are rounded down to the nearest integer (e.g. 6.7 is rounded down to 6) while negative numbers with decimal values are rounded away from zero (e.g. -5.8 is rounded to -6).
=FLOOR.MATH(6.7) // returns 6=FLOOR.MATH(-5.8) // returns -6
Control for rounding negative numbers toward zero or away from zero is provided with the (optional) mode argument. Mode defaults to zero. When mode is zero, or omitted, FLOOR.MATH rounds negative numbers away from zero. When mode is any non-zero value, FLOOR.MATH rounds negative numbers toward zero. Mode has no effect on positive numbers.
=FLOOR.MATH(-4.1) // returns -5=FLOOR.MATH(-4.1,1) // returns -5=FLOOR.MATH(-4.1,1,1) // returns -4=FLOOR.MATH(-4.1,1,-1) // returns -4=FLOOR.MATH(-4.1,1,TRUE) // returns -4
The FLOOR.MATH function differs from the FLOOR function in these ways:

The Excel FLOOR.MATH function rounds a number down to a specified multiple. Unlike the FLOOR function, FLOOR.MATH defaults to a multiple of 1, and provides explicit support for rounding negative numbers.
Round number down to nearest multiple
A rounded number
=FLOOR.MATH (number, [significance], [mode])
The Excel FLOOR.MATH function will round a number down to the nearest integer or given multiple of significance. By default, FLOOR.MATH rounds to the nearest integer, using a significance of 1. Positive numbers with decimal values are rounded down to the nearest integer (e.g. 6.7 is rounded down to 6) while negative numbers with decimal values are rounded away from zero (e.g. -5.8 is rounded to -6).
=FLOOR.MATH(6.7) // returns 6=FLOOR.MATH(-5.8) // returns -6
Control for rounding negative numbers toward zero or away from zero is provided with the (optional) mode argument. Mode defaults to zero. When mode is zero, or omitted, FLOOR.MATH rounds negative numbers away from zero. When mode is any non-zero value, FLOOR.MATH rounds negative numbers toward zero. Mode has no effect on positive numbers.
=FLOOR.MATH(-4.1) // returns -5=FLOOR.MATH(-4.1,1) // returns -5=FLOOR.MATH(-4.1,1,1) // returns -4=FLOOR.MATH(-4.1,1,-1) // returns -4=FLOOR.MATH(-4.1,1,TRUE) // returns -4
The FLOOR.MATH function differs from the FLOOR function in these ways: