multiple and round

H

Heather Gilroy

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

JE McGimpsey

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

Bob Phillips

Is this any good

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

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top