Retail prices end in 9!

K

ktexcel

Hello,

I have a list of calculated prices for retail articles that I need "
rounded" up or down to the nearest number ending in 9.
eg 411.54 would round to 409$ and 356.24 rounds to 359$
How to do??
K:confused:
 
R

Ron Rosenfeld

Hello,

I have a list of calculated prices for retail articles that I need "
rounded" up or down to the nearest number ending in 9.
eg 411.54 would round to 409$ and 356.24 rounds to 359$
How to do??
K:confused:


=ROUND(A1+1,-1)-1


--ron
 
R

Ron Rosenfeld

Maybe this change to your formula

=ROUND(A1,-1)-1

otherwise it will display 249 if the value is 255

Hmmm

The nearest number ending in nine.

254 - 249 = 5
254.01 - 249 = 5.01
259 - 254.01 = 4.99

So 254.01 should round to 259.

Your formula rounds it to 249.

I think:

=ROUND(A1+1,-1)-1



--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

Similar Threads


Top