Summary

The Excel ROUNDUP function returns a number rounded up to a given number of decimal places. Unlike standard rounding, where only numbers less than 5 are rounded down, ROUNDUP rounds all numbers up.

Purpose 

Round a number up to a given number of digits

Return value 

A rounded number.

Syntax

=ROUNDUP(number,num_digits)
  • number - The number to round up.
  • num_digits - The place at which number should be rounded.

How to use 

The ROUNDUP function rounds numbers up. Unlike standard rounding, where only numbers less than 5 are rounded down, ROUNDUP rounds all numbers up. For example:

=ROUNDUP(3.001,0) // returns 4

ROUNDUP takes two arguments, number and num_digits. Number is the number to be rounded, and num_digits is the place at which the number should be rounded. When num_digits is greater than zero, the ROUNDUP function rounds on the right side of the decimal point. When num_digits is less or equal to zero, the ROUNDUP function rounds on the left side of the decimal point. Use zero (0) for num_digits to round to the nearest integer. The table below summarizes this behavior:

Digits Behavior
>0 Round up to the nearest 0.1, 0.01, 0.001, etc.
<0 Round up to the nearest 10, 100, 1000, etc.
=0 Round up to the nearest whole number

How ROUNDUP works

The ROUNDUP function works like the ROUND function except that it always rounds up. The steps look like this:

1. Determine the precision. The precision is determined by the num_digits argument, which sets the number of decimal places to be returned. For example, =ROUNDUP(A1,1) will round a number in A1 up to one decimal place, and =ROUNDUP(A1,0) will round up to the nearest whole number.

2. Determine the rounding digit. This is the number in the place you are rounding to. For example, when rounding to the nearest whole number, the last number to keep is in the 1s position.

3. If any non-zero numbers follow the rounding digit, increment the rounding digit by 1. For example, to round the number 2.123 to up the nearest tenth (i.e. 1 decimal place):

  • The rounding digit is 1 (the first digit after the decimal).
  • The following numbers are non-zero.
  • The 2 is incremented by 1 and the result is 3.

We can get the same result with the ROUNDDOWN function like this:

=ROUNDUP(2.123,0) // returns 3
=ROUNDUP(2.123,1) // returns 2.2
=ROUNDUP(2.123,2) // returns 2.13
=ROUNDUP(2.123,3) // returns 2.123

Round to right of the decimal

To round up values to the right of the decimal point, use a positive number for digits: 

=ROUNDUP(A1,1) // Round up to nearest tenth (0.1)
=ROUNDUP(A1,2) // Round up to nearest hundredth (0.01)
=ROUNDUP(A1,3) // Round up to nearest thousandth (0.001)
=ROUNDUP(A1,4) // Round up to nearest ten-thousandth (0.0001)

The formulas above will round a number in cell A1 up to the nearest 1 decimal place, the nearest 2 decimal places, the nearest 3 decimal places, and the nearest 4 decimal places.

Round to left of the decimal

To round up values to the left of the decimal point, use zero or a negative number for digits:  

=ROUNDUP(A1,0) // Round up to nearest whole number
=ROUNDUP(A1,-1) // Round up to nearest 10
=ROUNDUP(A1,-2) // Round up to nearest 100
=ROUNDUP(A1,-3) // Round up to nearest 1000
=ROUNDUP(A1,-4) // Round up to nearest 10000

ROUNDUP with negative numbers

Excel's ROUNDUP function always rounds numbers up away from zero, to a specified number of digits. You can see this behavior in the examples below:

=ROUNDUP(-2.123,0) // returns -3
=ROUNDUP(-2.123,1) // returns -2.2
=ROUNDUP(-2.123,2) // returns -2.13
=ROUNDUP(-2.123,3) // returns -2.123

This might seem counterintuitive because the number becomes "larger" as an absolute value, but ROUNDUP consistently moves rounded numbers away from zero.

Nesting calculations inside ROUNDUP

Other operations and functions can be nested inside the ROUNDUP function. For example, to round the result of A1 divided by B1, you can use a formula like this:

=ROUNDUP(A1/B1,0) // round up result to nearest integer

Other rounding functions

Excel provides several rounding functions, each with a different behavior:

Notes

  • The ROUNDUP function rounds a number down to a given place by treating the remaining numbers as zero.
  • If the number is already rounded down to the given number of places, no rounding occurs.
  • If number is not numeric, ROUNDUP returns a #VALUE! error.
  • If num_digits is not numeric, ROUNDUP returns a #VALUE! error.
  • ROUNDUP always rounds numbers away from zero.
Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.