Ceiling precise
CEILING.PRECISE Function¶
The CEILING.PRECISE function in Excel rounds a number up to the nearest multiple of a specified factor. It's designed to provide consistent rounding behavior across positive and negative numbers, effectively making rounding more predictable than older functions.
Syntax:¶
CEILING.PRECISE(number, [significance])\
- number: The value you want to round.
- significance (optional): The multiple to which you want to round. If omitted, the default is 1.
Examples:¶
=CEILING.PRECISE(4.1, 0.5)would return4.5because 4.1 rounded up to the nearest 0.5 is 4.5.=CEILING.PRECISE(-4.1, 0.5)would return-4.0. WithCEILING.PRECISE, negative numbers are always rounded up (toward zero).
Note: The main difference between
CEILING.PRECISEand the traditionalCEILINGfunction is the consistent rounding behavior for negative numbers.CEILING.PRECISEwill always round away from zero, regardless of whether the number is positive or negative.