COUNTING TEXT CELLS IN A COLUMN

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
RagDyeR wrote...
Try this:

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

Given the internals of pattern processing, it'd be more efficient to
use =COUNTIF(A:A,"?*").
 
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 "".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top