Thread: Rounding
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] bizju@yahoo.com is offline
external usenet poster
 
Posts: 18
Default Rounding

Hi,
Assuming your numbers are in column A, try this formula in column B

=IF(A1-FLOOR(A1,1)<=0.55,FLOOR(A1*10,1)/10,ROUND(A1,2))

cheers,
julian

kirkm wrote:
In Excel .5 is always rounded up when the decimal places are reduced,
ie. 3.55 becomes 3.6, 3.65 becomes 3.7 etc. I need a formula that will
"throw .5 to the odd" so that 3.55 would become 3.5, 3.65 would become
3.7 etc. I would appreciate any help on this.

Thanks - Kirk