test on empty cell

L

Leif Hygrell

Hi,
In as sheet a certain calculation is to take place and it is not allowed to
have blanks.
I want to make a formula like =IF(AND(A1<>BLANK,B1<>BLANK),C1+D1,"False")
Is there a way to do this?

Regards

Leif
 
J

Jason Morin

Use a zero text string in place of BLANK.

....AND(A1<>"",B1<>"")...

HTH
Jason
Atlanta, GA
 
Top