rounding up and down formulas

K

kris

I am creating a retail price for our items. Problem is that I want the retail
price to end in either a .49 or .99. Example when I figure my retail pricing
off my cost it may come out to $6.74 and I would like to have a formula so
that it would automatically come out to $6.99 or if it was to $6.49 if is was
a lower number. Thanks!
 
T

T. Valko

That formula will *round down* an integer and a decimal = to 0.5

A1 = 10
A1 = 1.5

Formula result = 9.99
Formula result = 1.49
 
M

MartinW

Hi Kris,

Where you say,
that it would automatically come out to $6.99 or if it was to $6.49 if is
was
a lower number. Thanks!

Do you mean you want it to round like this
6.74 or lower - round down to 6.49
6.75 and higher.- round up to 6.99
If that is the case try this,

=ROUND(A1/0.5,0)*0.5-0.01

HTH
Martin
 
T

T. Valko

That is kind of confusing. I read it to mean:

..00 to .49 = round to .49

..50 to .99 = round to .99
 

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