Counting text cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a range of cells A25:A256 that contain text entries of various types (doesn't matter). How do I get it in cell A258 to give me a total of cells that have text in them within that range 25:256

Thanks, Gurus
Jessica
 
=SUMPRODUCT(--(ISTEXT(A25:A256)))

--

Regards,

Peo Sjoblom


Jessica Walton said:
I have a range of cells A25:A256 that contain text entries of various
types (doesn't matter). How do I get it in cell A258 to give me a total of
cells that have text in them within that range 25:256?
 
=COUNTA(A1:A22)
=COUNTIF(A1:A23,"<>"&0)

These will give the count of cells that are not empty, however they will not
distinguish text from numbers, just cells that aren't empty.
Regards,
Jessica Walton said:
I have a range of cells A25:A256 that contain text entries of various
types (doesn't matter). How do I get it in cell A258 to give me a total of
cells that have text in them within that range 25:256?
 

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