=countif(a2:a7349,"")

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

I need to count only the CELLS WITH TEXT in them and I do
not remember if "" refers to text or empty cells.

Thank you for any assistance you can offer in this matter.

Frank
 
Frank,

Count only counts numbers, CountA counts all, so the difference is (usually,
if you have no errors) text:

=COUNTA(A2:A7349)-COUNT(A2:A7349)

HTH,
Bernie
MS Excel MVP
 
Ron,

That counts any non-blank cell.

HTH,
Bernie
MS Excel MVP
 
Yeah...I noticed that as soon as I clicked "Post". I was glad to see that
you had already sent an appropriate post so I didn't bother to send a
retraction/correction.

New rule: No posting before I've had my morning coffee :)
 
Frank said:
I need to count only the CELLS WITH TEXT in them and I do
not remember if "" refers to text or empty cells.

Thank you for any assistance you can offer in this matter.

Frank

Also:

=COUNTIF(Range,"?*")

which skips numeric, empty, and cells with formula blanks (i.e., "").
 

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