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?
=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?