ROUND Function
ROUND rounds numbers to a given number of decimal places, following standard rounding rules.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| number | The number to round. | Required |
| num_digits | The number of decimal places to round to. Use 0 for whole numbers. | Required |
Basic Example
Round to 2 decimal places
=ROUND(3.14159, 2)Rounds 3.14159 to 2 decimal places, resulting in 3.14.
Advanced Examples
Example 1: Round to nearest 100
Financial reportingRound numbers to the nearest hundred
=ROUND(A1, -2)Example 2: Round to whole number
Inventory managementRound decimal quantities to whole units
=ROUND(A1, 0)How ROUND Works
ROUND uses standard mathematical rounding: 0.5 and above rounds up, below 0.5 rounds down. Positive num_digits rounds to decimal places, negative num_digits rounds to tens, hundreds, etc.
Important Notes & Limitations
ROUND always rounds 0.5 up (bankers rounding uses MROUND instead).
For always rounding up, use ROUNDUP; for always rounding down, use ROUNDDOWN.
Common Errors & Fixes
#VALUE!Non-numeric argumentsFix: Ensure both arguments are numbers.
Download Practice File
ROUND
roundPractice ROUND with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the ROUND function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps