ROUNDUP Function
ROUNDUP always rounds numbers up, never down, to the specified decimal places.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| number | The number to round up. | Required |
| num_digits | The number of decimal places to round to. | Required |
Basic Example
Always round up to 2 decimal places
=ROUNDUP(3.14159, 2)Rounds 3.14159 up to 2 decimal places, resulting in 3.15.
Advanced Examples
Example 1: Round up to nearest whole number
Order quantitiesAlways round up to the next whole unit
=ROUNDUP(A1, 0)Example 2: Calculate minimum hours for billing
Time trackingRound up minutes to the nearest quarter hour for billing
=ROUNDUP(A1/15, 0)*15How ROUNDUP Works
ROUNDUP always rounds numbers away from zero, regardless of the decimal value. 1.01 rounded to 0 decimal places becomes 2.
Important Notes & Limitations
ROUNDUP always increases the number (or makes it less negative).
Use ROUNDDOWN for the opposite behavior.
Common Errors & Fixes
#VALUE!Non-numeric argumentsFix: Ensure both arguments are numbers.
Download Practice File
ROUNDUP
roundupPractice ROUNDUP with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the ROUNDUP function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps