Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple cell reference formula returns 0 when cell is blank

Status
Not open for further replies.

bhujanga

Programmer
Oct 18, 2007
181
US
I have this simple formula form in many cells:

=IF(AND($B5=1,$A6=$A5),E6,"")

When there is nothing in cell E6 (in this case), it returns a zero instead of blank. Zero is also a valid possibility for cell E6, so I can't just change all zero returns to blanks. I can get around by using this formula:

=IF(AND($B5=1,$A6=$A5),IF(E6="","",E6),""),

but that seems unnecessarily clumsy. Is there a better way?
 
I checked out the link. It looks like they essentially do the same thing I did (Option 3), so I guess that's just what you have to do and I'll consider the matter resolved.
Thanks for your answer.
 
There were some pointers to some Excel's settings that returns either blank or zero.

---- Andy

"Hmm...they have the internet on computers now"--Homer Simpson
 
Simpler: =IF(AND(B5=1,A6=A5,NOT(ISBLANK(E5))),E6,"")
Blank is not empty, are zero length string (="") or space valid entries?


combo
 
Yes, the problem cells are those with nothing in them, but your formula works. I could also use: =IF(AND(B5=1,A6=A5,NOT(E6="")),E6,"")
Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top