Syntax
| Parameter | Description |
|---|---|
| number | Parameter of the ROUNDUP function. |
| num_digits | Parameter of the ROUNDUP function. |
Examples
Price rounding
=ROUNDUP(24.3521, 2)
Ceiling to whole number
=ROUNDUP(7.001, 0)
Round to tens
=ROUNDUP(1423, -2)
Common Errors
Non-numeric input like =ROUNDUP("abc", 2) returns #VALUE!.
Extremely rare, but could occur with unusual edge cases in the num_digits argument.
Tips
ROUNDUP(-3.2, 0) returns -4, not -3, because it rounds away from zero. This is different from CEILING which rounds toward positive infinity.
When calculating how many tiles, planks, or hours you need, always use ROUNDUP to avoid coming up short.
ROUNDUP(12345, -3) returns 13000. Negative second argument rounds to thousands, ten-thousands, etc.
Try ROUNDUP in Viztab
Import your data and use ROUNDUP with 370+ other formulas. No signup required.
Open Viztab