
The Excel CEILING.PRECISE function rounds a number up to a given multiple. Unlike the CEILING function, CEILING.MATH defaults to a multiple of 1, and always rounds negative numbers toward zero.
Round a number up to nearest multiple
A rounded number.
=CEILING.PRECISE (number, [significance])
The Excel CEILING.PRECISE function will round a number up to the nearest integer or given multiple of significance. By default, CEILING.PRECISE rounds to the nearest integer, using a significance of 1. Positive numbers with decimal portions are rounded up away from zero to the next multiple of significance (e.g. 6.3 is rounded to 7) , while negative numbers with decimal portions are rounded toward zero (e.g. -6.3 is rounded to -6).
=CEILING.PRECISE(6.3) // returns 7=CEILING.PRECISE(-6.3) // returns -6
The CEILING.PRECISE function always rounds negative numbers toward zero, and ignores the sign of significance.
=CEILING.PRECISE(-4.1) // returns -4=CEILING.PRECISE(-4.1,1) // returns -4=CEILING.PRECISE(-4.1,-1) // returns -4
Unlike the CEILING function, CEILING.PRECISE defaults to a multiple of 1, and always rounds negative numbers toward zero.
The CEILING.PRECISE function differs from the CEILING function in these ways:

The Excel CEILING.PRECISE function rounds a number up to a given multiple. Unlike the CEILING function, CEILING.MATH defaults to a multiple of 1, and always rounds negative numbers toward zero.
Round a number up to nearest multiple
A rounded number.
=CEILING.PRECISE (number, [significance])
The Excel CEILING.PRECISE function will round a number up to the nearest integer or given multiple of significance. By default, CEILING.PRECISE rounds to the nearest integer, using a significance of 1. Positive numbers with decimal portions are rounded up away from zero to the next multiple of significance (e.g. 6.3 is rounded to 7) , while negative numbers with decimal portions are rounded toward zero (e.g. -6.3 is rounded to -6).
=CEILING.PRECISE(6.3) // returns 7=CEILING.PRECISE(-6.3) // returns -6
The CEILING.PRECISE function always rounds negative numbers toward zero, and ignores the sign of significance.
=CEILING.PRECISE(-4.1) // returns -4=CEILING.PRECISE(-4.1,1) // returns -4=CEILING.PRECISE(-4.1,-1) // returns -4
Unlike the CEILING function, CEILING.PRECISE defaults to a multiple of 1, and always rounds negative numbers toward zero.
The CEILING.PRECISE function differs from the CEILING function in these ways: