rounding to closest 5 cents

  • Thread starter Thread starter lk
  • Start date Start date
L

lk

I am using Excel 2003

How do you round the contents of a cell to the closest five cents.

Thanks
lk
 
=ROUND(C10*20,0)/20

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
I am using Excel 2003

How do you round the contents of a cell to the closest five cents.

Thanks
lk

If you have the Analysis ToolPack installed:

=mround(A1,0.05)

If you do NOT have the ATP installed:

=ROUND(A1/0.05,0)*0.05


--ron
 
Back
Top