COUNTING TEXT CELLS IN A COLUMN

R

RagDyeR

Try this:

=COUNTIF(A:A,"*?")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


How do we count cells containing text, excluding blank cells?
 
H

Harlan Grove

Bob Phillips wrote...
=COUNTA(D:D)-COUNT(D:D)
....

Picky: that'd include cells evaluating to errors and booleans in the
count. It'd also include cells evaluating to "".
 
Top