Master the MROUND function to round numbers to the nearest 5 in Excel
Excel provides several functions to round numbers to the nearest 5. The MROUND function is the most straightforward method, but you can also use CEILING and FLOOR for specific rounding directions.
=MROUND(value, 5)
Rounds to the nearest multiple of 5
| Original | Rounded to Nearest 5 |
|---|---|
| 12 | 10 |
| 13 | 15 |
| 17 | 15 |
| 22 | 20 |
The MROUND function rounds a number to the nearest multiple of a specified value. For rounding to the nearest 5, use 5 as the multiple parameter.
=MROUND(number, 5)
Rounds to the nearest multiple of 5 using standard rounding rules
Step 1: Click the cell where you want the result
Step 2: Type =MROUND(
Step 3: Click the cell with your number or type it directly
Step 4: Type , 5) and press Enter
Step 5: The result will be rounded to the nearest 5
=MROUND(12, 5) → 10 (closer to 10 than 15)
=MROUND(13, 5) → 15 (closer to 15 than 10)
=MROUND(17.5, 5) → 15
=MROUND(22, 5) → 20
=MROUND(27.6, 5) → 30
=MROUND(99, 5) → 100
The CEILING function always rounds UP to the next multiple of 5, regardless of the value.
=CEILING(number, 5)
Always rounds UP to the next multiple of 5
=CEILING(11, 5) → 15 (rounds up)
=CEILING(13, 5) → 15 (rounds up)
=CEILING(16, 5) → 20 (rounds up)
=CEILING(22, 5) → 25 (rounds up)
The FLOOR function always rounds DOWN to the previous multiple of 5.
=FLOOR(number, 5)
Always rounds DOWN to the previous multiple of 5
=FLOOR(11, 5) → 10 (rounds down)
=FLOOR(14, 5) → 10 (rounds down)
=FLOOR(18, 5) → 15 (rounds down)
=FLOOR(29, 5) → 25 (rounds down)
| Value | MROUND | CEILING | FLOOR |
|---|---|---|---|
| 11 | 10 | 15 | 10 |
| 12.5 | 10 | 15 | 10 |
| 13 | 15 | 15 | 10 |
| 17 | 15 | 20 | 15 |
| 22 | 20 | 25 | 20 |
| 27.5 | 30 | 30 | 25 |
Round prices to end in .95 or .99 for psychological pricing
Calculated: $12.47
=MROUND(12.47, 5) → $10 → $9.95
Calculated: $18.20
=MROUND(18.20, 5) → $20 → $19.95
Round meeting times to 5-minute intervals
Duration: 23 minutes
=MROUND(23, 5) → 25 minutes
Time slot: 47 minutes
=CEILING(47, 5) → 50 minutes
Order items in packs of 5 units
Needed: 23 units
=CEILING(23, 5) → 25 units (5 packs)
Forecast: 47 units
=CEILING(47, 5) → 50 units (10 packs)
Allocate staff in groups of 5
Required: 32 people
=CEILING(32, 5) → 35 people (7 teams)
Budget for: 18 people
=MROUND(18, 5) → 20 people
=ROUND(12, 5) does NOT round to nearest 5
Correct: =MROUND(12, 5) → 10
MROUND requires both the number and the multiple (5)
Wrong: =MROUND(12) → Error
Correct: =MROUND(12, 5) → 10
CEILING rounds UP, FLOOR rounds DOWN
=CEILING(12, 5) → 15 (up)
=FLOOR(12, 5) → 10 (down)
Learn to round up to the nearest hundred
Round up to the nearest thousand
Complete tutorial on the ROUND function
Comprehensive guide to all rounding formulas
Round decimals to whole integers
Master all Excel rounding techniques