count or sum

  • Thread starter Thread starter jerie
  • Start date Start date
J

jerie

how can I count all the occupied cells in the same column
if the cells contain text and numbers?
A
row 1 br1
row 2
row 3
row 4 cb2
row 5
row 6
row 7 df6
ect down to row 200.

the answer should be 3 (the number of cells occupied)

please help thanks

rgs jerie
 
Jerie,

=countif(a1:a200,"") will return the total number of blanks

thanks......jaya
 
Hi!

Will there be any enties that are only numbers? Is there
always only a single digit? Are the digits always the last
character? Will there be any entries that are all letters?

row 1 br1
row 2 101
row 3 k22
row 4 cb2
row 5 44s
row 6 xxx
row 7 df6

Biff
 
jerie

=countif(a1:a200,">""") will return the number of cells containing text
=countif(a1:a200,">0") will return the number of cells containing +numeric

if you combine these two criteria with +, will return both text and +numeric

thanks....jaya
 
=COUNTA(A1:A10)

will return the count of cells with text or numbers, and also cells containing
error values and cells containing a formula that is returning a result of "".
 

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