
The Excel FLOOR.PRECISE function rounds a number down to a specified multiple. Unlike the FLOOR function, FLOOR.PRECISE defaults to a multiple of 1, and always rounds negative numbers away from zero.
Round number down to nearest multiple
A rounded number
=FLOOR.PRECISE (number, [significance])
The Excel FLOOR.PRECISE function will round a number down to the nearest integer or given multiple of significance. By default, FLOOR.PRECISE rounds to the nearest integer, using a significance of 1. Positive numbers with decimal values are rounded down toward zero (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.PRECISE(6.7) // returns 6=FLOOR.PRECISE(-5.8) // returns -6
The CEILING.PRECISE function always rounds negative numbers down away from zero, and ignores the sign of significance.
=FLOOR.PRECISE(-4.1) // returns -5=FLOOR.PRECISE(-4.1,1) // returns -5=FLOOR.PRECISE(-4.1,-1) // returns -5
The FLOOR.PRECISE function differs from the FLOOR function in these ways:

The Excel FLOOR.PRECISE function rounds a number down to a specified multiple. Unlike the FLOOR function, FLOOR.PRECISE defaults to a multiple of 1, and always rounds negative numbers away from zero.
Round number down to nearest multiple
A rounded number
=FLOOR.PRECISE (number, [significance])
The Excel FLOOR.PRECISE function will round a number down to the nearest integer or given multiple of significance. By default, FLOOR.PRECISE rounds to the nearest integer, using a significance of 1. Positive numbers with decimal values are rounded down toward zero (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.PRECISE(6.7) // returns 6=FLOOR.PRECISE(-5.8) // returns -6
The CEILING.PRECISE function always rounds negative numbers down away from zero, and ignores the sign of significance.
=FLOOR.PRECISE(-4.1) // returns -5=FLOOR.PRECISE(-4.1,1) // returns -5=FLOOR.PRECISE(-4.1,-1) // returns -5
The FLOOR.PRECISE function differs from the FLOOR function in these ways: