Hi Kristy...........
Direct from the Help file..........
ROUND
Rounds a number to a specified number of digits.
Syntax
ROUND(number,num_digits)
Number is the number you want to round.
Num_digits specifies the number of digits to which you want to round
number.
If num_digits is greater than 0 (zero), then number is rounded to the
specified number of decimal places.
If num_digits is 0, then number is rounded to the nearest integer.
If num_digits is less than 0, then number is rounded to the left of the
decimal point.
Examples
ROUND(2.15, 1) equals 2.2
ROUND(2.149, 1) equals 2.1
ROUND(-1.475, 2) equals -1.48
ROUND(21.5, -1) equals 20
You can also replace the number with a cell reference, like =ROUND(A1,2)
Others of interest might be ROUNDUP, ROUNDDOWN, MROUND.........
Vaya con Dios,
Chuck, CABGx3
Kirsty said:
I've been doing masses of calculations on excel and now i want to round my
numbers to two significant figures quickly without having to do them one at
a time