Round Numbers to the Nearest Integer
To round numbers to
the nearest integer or dollar. In Excel there are formulas that can help
in this task.
Round
(2000/2002/2003)
The formula ROUND
rounds a number up or down depending on the number.
Click in
a cell and type =round(number,number_of_digits)
For example
=round(5.6,0) will be displayed as
6
=round(5.446,0)
will be displayed as
5
Rounddown (2002/2003)
The formula ROUNDDOWN
rounds a number down.
Click in
a cell and type =rounddown(number,number_of_digits)
For
example =rounddown(5.556,0) will be displayed as
5
Roundup (2002/2003)
The formula ROUNDUP
rounds a number up.
Click in
a cell and type =roundup(number,number_of_digits)
For
example =roundup(5.556,0) will be displayed as
6
=roundup(5.321,0) will be displayed as
6
|