View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default how do you change $42.79 to an even number ($42.80)

Try this.

A1 = some number like 42.79

=ROUND(A1/0.02,0)*0.02

--
Biff
Microsoft Excel MVP


"Jean9" wrote in message
...
My program has to calculate a percentage recoverable and then this amount
is
deducted from a maximum of 3 figures. My problem is that if the
percentage
is an odd number, I will end up being out .01. What do I do to avoid this
problem?