Need help in rounding answers to nearest multiple

G

Guest

Is there a formula or method of calculation that can be used when working
with Excel worksheets that can round the answer to the nearest multiple of
the answer, such as rounding for multiples of 10?

I am using Excel Office 2000
 
V

Vito

Try the Cieling() and Floor() functions


e.g. =Cieling(A1,10) will round up to nearest multiple of 10

=Floor(A1,10) will round down to nearest multiple of 10
 
G

Guest

=ROUND(A1,-1) rounds A1 to the nearest multiple of 10.
Regards,
Stefi



„Wasatch†ezt írta:
 
D

David Biddulph

Wasatch said:
Is there a formula or method of calculation that can be used when working
with Excel worksheets that can round the answer to the nearest multiple of
the answer, such as rounding for multiples of 10?

I am using Excel Office 2000

=MROUND(A1,10)
 
G

Guest

I think MROUND requires an addin. Try this formula

=10*ROUND(A1/10,0)

replace both 10's with any multiple you want to round.
 

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

Top