How to Use the ROUND Functions in Microsoft Excel

Estimated read time 4 min read

[ad_1]

Microsoft Excel logo on a green background

When you work with decimal numbers, rounding might be part of your equation. Microsoft Excel offers a few functions to help you quickly and easily round to perfection.

You can use the simple ROUND function, always round up or down with ROUNDUP and ROUNDDOWN, or round to a specific multiple with MROUND. Let’s take a look at how to use each of these ROUND functions in Excel.

The ROUND Function

The most basic of the functions is ROUND. With it, you can use a number or cell reference and round up or down.

RELATED: 12 Basic Excel Functions Everybody Should Know

The syntax is ROUND(number, digits) where both arguments are required. Keep these considerations in mind for the digits argument.

  • If it is greater than zero, the number rounds to the specified number of decimal places.
  • If it is zero, the number rounds to the nearest integer.
  • If it is less than zero, the number rounds to the left of the decimal point.

To round 3.7528 up two decimal places, you would use the following formula and receive the result 3.75:

=ROUND(3.7528,2)

Formula for ROUND with decimal places

To round that same number to the nearest integer, you would use this next formula and receive the result 4:

=ROUND(3.7528,0)

Formula for ROUND for an integer

You can also use a cell reference instead of entering the number in your formula. Here, we’ll round the value in cell A1 two places to the left of the decimal point.

=ROUND(A1,-2)

Formula for ROUND with a cell reference

The ROUNDUP Function

Maybe you have a sheet with numbers that you want to always round up. This is when the ROUNDUP function is useful.

The syntax is ROUNDUP(number, digits) where both arguments are required, just like the ROUND function. This function also has the same three considerations for the digits argument.

To round 5.3692 up two decimal places, you would use the following formula to receive the result 5.37.

=ROUNDUP(5.3692,2)

Formula for ROUNDUP with decimal places

To round that same number to the nearest integer, you would use the next formula and receive the result 6.

=ROUNDUP(5.3692,0)

Formula for ROUNDUP for an integer

To use the cell reference A1 for the value and round up three places to the left of the decimal point, you’d use this formula.

=ROUNDUP(A1,-3)

Formula for ROUNDUP with a cell reference

The ROUNDDOWN Function

ROUNDDOWN works just like its counterpart above except that it always rounds down.

The syntax is ROUNDDOWN(number, digits) where both arguments are required like the above two functions. And this function has the same three considerations for the digits argument.

To round 7.421 down two decimal places and receive the result 7.42, use this formula:

=ROUNDDOWN(7.421,2)

Formula for ROUNDDOWN with decimal places

To round that same number to the nearest integer, use the following formula to receive the result 7.

=ROUNDDOWN(7.421,0)

Formula for ROUNDDOWN for an integer

And to round that value in cell A1 down three places to the left of the decimal point, you’d use this formula:

=ROUNDDOWN(A1,-3)

Formula for ROUNDDOWN with a cell reference

The MROUND Function

A bit different than the above functions, MROUND rounds to a certain multiple.

RELATED: How to Fix Common Formula Errors in Microsoft Excel

The syntax is MROUND(number, multiple) where both arguments are required and must have the same sign. So, if you use a negative for the number, you must use a negative for the multiple otherwise you’ll receive an error.

To round 13 to the nearest multiple of 3 and receive the result 12, you’d use this formula:

=MROUND(13,3)

Formula for MROUND with a positive multiple

To round -20 to the nearest multiple of -6 and receive the result -18, you’d use this formula:

=MROUND(-20,-6)

Formula for MROUND with a negative multiple

To round the value in cell A1 to the nearest multiple of 3, you would use this formula:

=MROUND(A1,3)

Formula for MROUND with a cell reference

Rounding is one of those tasks that you don’t have to do manually in Excel. These functions take the work out of rounding the numbers in your spreadsheet.

RELATED: 13 Essential Excel Functions for Data Entry



[ad_2]

Source link

You May Also Like

More From Author