Iso ceiling
ISO.CEILING Function¶
The ISO.CEILING function in Excel is used to round up a number to the nearest integer or specified multiple, moving
away from zero. This function is useful in scenarios requiring standardized rounding up, such as financial calculations
or inventory adjustments.
Syntax:¶
ISO.CEILING(number, [significance])
- number: The numeric value you want to round.
- significance (optional): The multiple to which you want to round the number. Defaults to
1if omitted.
Examples:¶
-
=ISO.CEILING(4.3)
Returns5, as the number4.3is rounded up to the nearest integer. -
=ISO.CEILING(4.3, 0.5)
Returns4.5, as4.3is rounded up to the next multiple of0.5. -
=ISO.CEILING(-4.3)
Returns-5, because the negative number-4.3rounds away from zero. -
=ISO.CEILING(-4.3, 0.5)
Returns-4.5, rounding to the next multiple of0.5away from zero. -
=ISO.CEILING(12.7, 5)
Returns15, as12.7is rounded up to the next multiple of5.
Usage Notes:¶
- The significance value must be positive; if omitted, it defaults to
1. - For positive numbers, the function behaves similarly to
CEILINGbut ensures a consistent, ISO-compliant rounding behavior. - For negative numbers, the function rounds away from zero, unlike
CEILINGwith some combinations of arguments. ISO.CEILINGis particularly useful in industries requiring precise and standardized rounding, such as finance, manufacturing, or logistics.