Entire Col Null?

S

swatsp0p

If, by NULL, you mean blank (no data, no text, no formulas, no nothing)
try this:

=COUNTIF(A:A,"") will return 65536 if it is truly all blank. O
course, use the letter of the column you want to verify.

Is this what you are looking for
 
D

Dave Peterson

if you mean truly empty, one more:

=if(counta(c:c)=0,"all cells empty","not all cells empty")
 
Top