Count

G

Guest

Folks:



I have a single column of information. Only SOME of the cells within this
column contain a string of alphabetic characters.
Some cells are empty. For example:

Column A
ABC

ZEP


POW
ZAP


* What Excel command would allow me to count the # of cells that actually
contain alphabetic information within a certain range like A2:A100



Thanks,
John.
 
D

Dave Peterson

If those empty cells are really empty, then you could use:

=counta(a2:a100) to count the non-empty cells.

Cells with Text, Numbers, and even formulas that evaluate to "" will be counted.
 
D

Dave Peterson

Check your other post, too.
Folks:

I have a single column of information. Only SOME of the cells within this
column contain a string of alphabetic characters.
Some cells are empty. For example:

Column A
ABC

ZEP

POW
ZAP

* What Excel command would allow me to count the # of cells that actually
contain alphabetic information within a certain range like A2:A100

Thanks,
John.
 
G

Guest

If some have numbers:

=COUNTIF(A1:A100,"*")

That will count any cell with text in it.
 

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