View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default Differenec formula: Dnt need '0' as a result;Rather have a blank c

=IF(Sheet1!A1-Sheet1!B1=0,"",Sheet1!A1-Sheet1!B1)

Or if you want to see a zero when the difference evaluates to a real zero

=IF(AND(Sheet1!A1="",(Sheet1!B1="")),"",Sheet1!A1-Sheet1!B1)


Gord Dibben MS Excel MVP

On Tue, 28 Jul 2009 12:03:01 -0700, Rum
wrote:

Hi,

I have an excel sheet with data in columns A & B on TAB 1 and I am trying to
have the DIFFERENCE of TAB 1-Cell A1 & B1 in TAB 2-Cell A1.

My Cells A1 & B1 of TAB1 are empty (have nothing in them) and when I apply
the formula I get "0" as result in Cell A1-TAB 2.

Is there a way to NOT get '0' in the result cell with the formula still
being in there even when your data cells are empty?

Please help.

Thanks
Regards
Rum