I need Help with a count cell text formula

E

Excel ??

Dear all, can anyone please please give me a formula or how do I add cells
that contatin text not numbers? I want to be able to add each cell that
contains text and for those that are blank of course not to be added to my
sum. thank you all I hope I made sense.
 
D

Dave Peterson

Another:

=counta(a1:b99) - count(a1:b99)

=counta() will count all the non-empty cells (even cells with formulas that
evaluate to "")

=count() will count the numeric cells.
 
R

RagDyer

This will count TEXT, *including* nulls ( "", zero length strings):

=COUNTIF(A:A,"*")

This will *not* count nulls:

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

Shane Devenshire

I suspect you mean count not sum:

=COUNTA(A1:A9)

But if the cells contain numbers this will also count them. Don't know if
that is an issue?
 

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

Top