Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If your data is in column A then use this in cell B1
=COUNTA(A:A) "RC" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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 he http://contextures.com/xlFunctions04.html RC wrote: 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 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - mixed type (line, column, stacked column) in one char | Charts and Charting in Excel | |||
Clustered column graph with mixed data in 2nd column | Charts and Charting in Excel | |||
Counting a mixed text/number column based on text in another colum | Excel Discussion (Misc queries) | |||
Counting mixed cells | Excel Discussion (Misc queries) | |||
Find and Replace (mixed formats) | Excel Discussion (Misc queries) |