- What's the difference between CEILING.MATH and the CEILING function?
- CEILING.MATH supports negative numbers and includes a mode parameter for controlling rounding direction. The legacy CEILING function lacks these features and may return #NUM! errors with negative values. Use CEILING.MATH for modern spreadsheets.
- When should I use mode=1 instead of the default mode=0?
- Use mode=1 when rounding negative numbers toward zero (e.g., -9.5 becomes -9.0 instead of -10.0). Mode=0 rounds away from zero, which is the typical ceiling behavior. For positive numbers, both modes behave identically.
- Can CEILING.MATH round to decimals or does it only work with whole numbers?
- CEILING.MATH rounds to any significance value you specify. For example, =CEILING.MATH(9.73, 0.25) rounds to the nearest quarter-dollar ($9.75), while =CEILING.MATH(9.73, 0.01) rounds to the nearest cent. The result's precision depends entirely on your significance parameter.
- How do I round up currency to the nearest half-dollar or quarter-dollar?
- Use CEILING.MATH with the appropriate significance: =CEILING.MATH(9.73, 0.50) returns 10.00 (nearest half-dollar), and =CEILING.MATH(9.73, 0.25) returns 9.75 (nearest quarter-dollar). This is useful for pricing strategies, shipping costs, or bulk discounts.