Rounding

G

Guest

I am looking to create a formula that will multiply one cell by 40% and then
round that number to the nearest hundred. For example, take 8700 and
mulitply it by 40% to get 3,480. I need to round that number up to 3,500.
Any suggestions?
 
N

Niek Otten

=ROUND(A1*40%,-2)

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I am looking to create a formula that will multiply one cell by 40% and then
| round that number to the nearest hundred. For example, take 8700 and
| mulitply it by 40% to get 3,480. I need to round that number up to 3,500.
| Any suggestions?
 
G

Guest

Thanks for the formula. However, when I use that it rounds up and down. I
need something that will only round up, 2,101 becomes 2,200.
 
B

Bob Phillips

=CEILING(A1,100)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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