ROUNDDOWN Function
ROUNDDOWN always rounds numbers down, never up, to the specified decimal places.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| number | The number to round down. | Required |
| num_digits | The number of decimal places to round to. | Required |
Basic Example
Always round down to 2 decimal places
=ROUNDDOWN(3.14999, 2)Rounds 3.14999 down to 2 decimal places, resulting in 3.14.
Advanced Examples
Example 1: Truncate to whole number
Integer conversionRemove decimal portion without rounding
=ROUNDDOWN(A1, 0)Example 2: Round down to nearest 1000
BudgetingRound down to the nearest thousand for budget estimation
=ROUNDDOWN(A1, -3)How ROUNDDOWN Works
ROUNDDOWN always rounds numbers toward zero, effectively truncating decimal values. 1.999 rounded to 0 decimal places becomes 1.
Important Notes & Limitations
ROUNDDOWN always decreases the number (or makes it more negative).
Use ROUNDUP for the opposite behavior.
Common Errors & Fixes
#VALUE!Non-numeric argumentsFix: Ensure both arguments are numbers.
Download Practice File
ROUNDDOWN
rounddownPractice ROUNDDOWN with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the ROUNDDOWN function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps