Excel

How to Use the MROUND Function in Excel (Step-by-Step Guide with Examples)

In Excel, rounding numbers is often essential for financial calculations, pricing, or standardizing data. While functions like ROUND and ROUNDUP round numbers to a specific number of decimal places, sometimes you need to round to the nearest multiple—such as 5, 10, or 100.

That’s where the MROUND function comes in.


🔍 What is the MROUND Function?

The MROUND function rounds a number to the nearest specified multiple.

Syntax:

=MROUND(number, multiple)
  • number → The value you want to round.

  • multiple → The multiple to which you want to round.

💡 If the number is exactly halfway between two multiples, Excel rounds away from zero.


✅ Example 1: Rounding to the Nearest 5

Formula:

=MROUND(12, 5)

Result: 10

✔️ Explanation: 12 is closer to 10 than 15, so Excel rounds it to 10.


✅ Example 2: Rounding to the Nearest 10

Formula:

=MROUND(127, 10)

Result: 130

✔️ Explanation: 127 is closer to 130 than 120.


✅ Example 3: Rounding to the Nearest 0.25

Formula:

=MROUND(2.37, 0.25)

Result: 2.25

✔️ Explanation: Useful for rounding to fractional increments (like quarters of a dollar).


✅ Example 4: Rounding Negative Numbers

Formula:

=MROUND(-17, 5)

Result: -15

✔️ Explanation: Excel rounds away from zero, so -17 rounds to -15 (closer multiple than -20).


✅ Example 5: Error Case

Formula:

=MROUND(10, 3)

Result: #NUM!

✔️ Explanation: MROUND only works if number and multiple have the same sign. Using a positive number with a negative multiple (or vice versa) will cause an error.


🎯 Practical Uses of MROUND

  1. Finance → Round amounts to the nearest 100 or 1,000 for budgeting.

  2. Pricing → Round prices to the nearest 0.05 or 0.10 for retail.

  3. Time Management → Round hours worked to the nearest 15 minutes.

  4. Manufacturing → Standardize quantities to batch sizes (e.g., round to nearest 50 units).


📝 Conclusion

The MROUND function is a practical tool when you need to round numbers to the nearest multiple instead of just controlling decimal places.

👉 Use it for financial models, pricing strategies, or any scenario where values must align with standard increments.