Back to Home

Excel Round to Nearest 5

Master the MROUND function to round numbers to the nearest 5 in Excel

Rounding to 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.

Primary Method: MROUND

=MROUND(value, 5)

Rounds to the nearest multiple of 5

Quick Examples

OriginalRounded to Nearest 5
1210
1315
1715
2220

Method 1: MROUND Function (Standard Rounding)

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.

Syntax

=MROUND(number, 5)

Rounds to the nearest multiple of 5 using standard rounding rules

Step-by-Step Instructions

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

Examples

=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

Method 2: CEILING Function (Always Round Up)

The CEILING function always rounds UP to the next multiple of 5, regardless of the value.

Syntax

=CEILING(number, 5)

Always rounds UP to the next multiple of 5

Examples

=CEILING(11, 5)15 (rounds up)

=CEILING(13, 5)15 (rounds up)

=CEILING(16, 5)20 (rounds up)

=CEILING(22, 5)25 (rounds up)

Method 3: FLOOR Function (Always Round Down)

The FLOOR function always rounds DOWN to the previous multiple of 5.

Syntax

=FLOOR(number, 5)

Always rounds DOWN to the previous multiple of 5

Examples

=FLOOR(11, 5)10 (rounds down)

=FLOOR(14, 5)10 (rounds down)

=FLOOR(18, 5)15 (rounds down)

=FLOOR(29, 5)25 (rounds down)

Comparison: MROUND vs CEILING vs FLOOR

ValueMROUNDCEILINGFLOOR
11101510
12.5101510
13151510
17152015
22202520
27.5303025

Real-World Use Cases

Pricing Strategies

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

Scheduling

Round meeting times to 5-minute intervals

Duration: 23 minutes

=MROUND(23, 5) → 25 minutes

Time slot: 47 minutes

=CEILING(47, 5) → 50 minutes

Inventory Management

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)

Resource Planning

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

Common Mistakes to Avoid

Mistake 1: Using ROUND instead of MROUND

=ROUND(12, 5) does NOT round to nearest 5

Correct: =MROUND(12, 5) → 10

Mistake 2: Forgetting the 5 parameter

MROUND requires both the number and the multiple (5)

Wrong: =MROUND(12) → Error

Correct: =MROUND(12, 5) → 10

Mistake 3: Mixing up CEILING and FLOOR

CEILING rounds UP, FLOOR rounds DOWN

=CEILING(12, 5) → 15 (up)
=FLOOR(12, 5) → 10 (down)

Pro Tip: When to use each function

  • MROUND: Standard rounding for general purposes
  • CEILING: When you always need to round up (inventory, capacity)
  • FLOOR: When you always need to round down (conservative estimates)