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

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