HOW DO I FORMULATE A CELL TO ROUND $5.82 TO $5.85

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

Guest

In making price lists, I want my prices to round to the nearest .x5 or .x9 .
The cells containing the prices are from a formula in another cell.
 
rikg said:
In making price lists, I want my prices to round to the nearest .x5 or .x9 ..
The cells containing the prices are from a formula in another cell.

I'm not sure I understand what you want. I think 5.82 should be rounded to
5.8. If you want to round to the nearest 5 cent, use
=ROUND(A1*20,0)/20

/Fredrik
 
Assuming your price is in cell A1, put this in B1

=IF(RIGHT(TEXT(A1,"$0.00"),1)/100<=0.05,A1-RIGHT(TEXT(A1,"$0.00"),1)/100+0.0
5,A1-RIGHT(TEXT(A1,"$0.00"),1)/100+0.09)

All on one line, watch out for email word-wrap..........

Vaya con Dios,
Chuck, CABGx3
 
Try this:
=TRUNC(A1*10)/10+IF((MOD($A1,0.1)+0.01)<=0.06,0.05,0.09)

Does that help?

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