Counting mixed formats in a column

R

RC

I have one column of date. In it is data of the type -
12345
15689
12458A
C55897
and some blank cells.

I want to count the number of cells that are not blank whatever they contain
(i.e. whether they are pure numbers or text/numbers or numbers/text.
Can you provide a formula for this.

Thanks
 
D

Dave Peterson

=count(a:a)
will count the number of cells that contain numbers (including dates and times!)

=counta(a:a)
will count the cells that contain anything--including formulas that evaluate to
="" (that look blank).

=countblank(a:a)
will count the number of cells that are empty or look blank (evaluate to ="").

Debra Dalgleish has lots of notes about counting stuff here:
http://contextures.com/xlFunctions04.html
 

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