Rounding Numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a list of values as below:

476.14
361.99
345.69
463.08
515.29
403.44
330.68
347.64
375.36

I would like to create a formula that rounds the values to the nearest 0.05
eg. Round 476.14 to 476.15, 361.99 to 362.00, 375.36 to 375.35 etc…
Is there anyway that I can do this?

Thanks, Jane.
 
JaneC said:
I have a list of values as below:
476.14
361.99
345.69
463.08
515.29
403.44
330.68
347.64
375.36
I would like to create a formula that rounds the values
to the nearest 0.05 eg. Round 476.14 to 476.15,
361.99 to 362.00, 375.36 to 375.35 etc...
MROUND(number, multiple)

For example, =MROUND(A1, 0.05)
 
I have a list of values as below:

476.14
361.99
345.69
463.08
515.29
403.44
330.68
347.64
375.36

I would like to create a formula that rounds the values to the nearest 0.05
eg. Round 476.14 to 476.15, 361.99 to 362.00, 375.36 to 375.35 etc…
Is there anyway that I can do this?

Thanks, Jane.

=ROUND(A1/0.05,0)*0.05

where A1 is the cell reference containing your number.

Format the result as Number with 2 decimals (Format/Cells/Number Number
Decimals 2)


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top