multiple and round

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

Guest

I need to take the (variable) cost price times 1.67 (fixed) and then have the
result round (up or down) to the nearest 9th.
Example
cost 1.27 x 1.67 = 2.1209
rounded result = 2.09
Please Help! Thanks!
 
One way:

=CEILING(A1*1.67,0.1) - 0.01

Note, I assumed you wanted it rounded up to the nearest dollar amount
ending in 0.x9, not the nearest 9th.
 
Is this any good

=ROUND(ROUND(A1*11,0)/11,2)

--

HTH

RP
(remove nothere from the email address 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

Back
Top