I am attempting to use the: COUNT and COUNTIF to count a
Column for all rows where the Value IS NOT NULL, Does
Excel recognize NULL, the function I am using is:
=COUNTIF('EE Master'!A2:A2010,('EE Master'!A2:A2010<>""))
Improper syntax. You sould use
=COUNTIF('EE Master'!A2:A2010,"<>")
but it may not give you the results you expect since it includes cells
containing text constants or formulas evaluating to "" in the count.
How do you define 'NULL'? #NULL! is an Excel error value, and it's unreasonable
to figure that such error values are 'NULL'. You could also mean blank, as in
cells with no contents at all for which ISBLANK returns True and COUNT returns
0. Or you could mean either blank or text evaluating to "", zero-length strings
which are also sometimes referred to as empty strings. Precise terminology,
though often perceived as tedious, is nevertheless essential. 'NULL' is
ambiguous in Excel, and ambiguity is almost always a source of nasty problems.
To count all cells that aren't truly blank in the ISBLANK sense, just use
=COUNTA('EE Master'!A2:A2010)
To count all cells that aren't blank or "", use
=SUMPRODUCT(--('EE Master'!A2:A2010<>""))