Google Sheets
CEILING.MATH function in Google Sheets
Rounds a number up to the nearest integer multiple of specified significance, with negative numbers rounding toward or away from 0 depending on the mode.
=CEILING.MATH(number, [significance], [mode])CEILING.MATH syntax and parameters
Three arguments, one required.
- numbernumberRequired
- significancenumberOptional
- modenumberOptional
CEILING.MATH examples
Formulas you'll actually reuse.
Timesheet hours rounded UP to the next half hour:
=CEILING.MATH(B2, 0.5)Result
8Negatives away from zero with mode 1 — −23 becomes −30, not −20:
=CEILING.MATH(-B2, 10, 1)Result
-30
CEILING.MATH in Excel
Same name — your formula ports as-is.
Try CEILING.MATH in the playground
Edit the example — nothing to install.
Preloaded with the CEILING.MATH formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- ABSReturns the absolute value of a number.MathExcel
- ACOSReturns the inverse cosine of a value, in radians.MathExcel
- ACOSHReturns the inverse hyperbolic cosine of a number.MathExcel
- ACOTReturns the inverse cotangent of a value, in radians. .MathExcel
- ACOTHReturns the inverse hyperbolic cotangent of a value, in radians. Must not be between -1 and 1, inclusive..MathExcel
- ASINReturns the inverse sine of a value, in radians.MathExcel