ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to count the number of cells not empty? (https://www.excelbanter.com/excel-discussion-misc-queries/261779-how-count-number-cells-not-empty.html)

Eric

How to count the number of cells not empty?
 
I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric

Sheeloo

How to count the number of cells not empty?
 
Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric


Eric

How to count the number of cells not empty?
 
it counts the empty cell too,
Do you have any suggestions on how to fix it?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric


Eric

How to count the number of cells not empty?
 
="", which is not defined as empty cell in excel, so counta function does not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric


Sheeloo

How to count the number of cells not empty?
 
=COUNTA(M2:W200) - COUNTIF(M2:W200,"")
Try

"Eric" wrote:

="", which is not defined as empty cell in excel, so counta function does not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric


T. Valko

How to count the number of cells not empty?
 
What type of data is in the range? Is it text, numeric, both?

--
Biff
Microsoft Excel MVP


"Eric" wrote in message
...
="", which is not defined as empty cell in excel, so counta function does
not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number
of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric




T. Valko

How to count the number of cells not empty?
 
Ok, I got this from your other post:

There is a table from cell M2 to W200, which
contains names and empty cell.


So, that means the range contains only TEXT.

Try this...

=COUNTIF(M2:W200,"?*")

That will count TEXT ONLY and will *exclude* from the count any cells that
contain formula blanks ="".

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
What type of data is in the range? Is it text, numeric, both?

--
Biff
Microsoft Excel MVP


"Eric" wrote in message
...
="", which is not defined as empty cell in excel, so counta function does
not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number
of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric






Eric

How to count the number of cells not empty?
 
Whatif the cell contains number only, such as 1, -1, 0.
Do you have any suggestions?
Thank everyone very much for any suggestions
Eric

"T. Valko" wrote:

Ok, I got this from your other post:

There is a table from cell M2 to W200, which
contains names and empty cell.


So, that means the range contains only TEXT.

Try this...

=COUNTIF(M2:W200,"?*")

That will count TEXT ONLY and will *exclude* from the count any cells that
contain formula blanks ="".

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
What type of data is in the range? Is it text, numeric, both?

--
Biff
Microsoft Excel MVP


"Eric" wrote in message
...
="", which is not defined as empty cell in excel, so counta function does
not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the number
of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric





.


Ron Rosenfeld

How to count the number of cells not empty?
 
On Sun, 18 Apr 2010 07:28:01 -0700, Eric
wrote:

I get a table from cell M2 to W200, and would like to count the number of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric


Two different approaches:

=ROWS(M2:W200)*COLUMNS(M2:W200)-COUNTBLANK(M2:W200)


=SUMPRODUCT(--(LEN(M2:W200)0))


--ron

T. Valko

How to count the number of cells not empty?
 
Whatif the cell contains number only

For numbers *only* :

=COUNT(M2:W200)

For cells that contain either numbers or text and exclude formula blanks:

=COUNT(M2:W200)+COUNTIF(M2:W200,"?*")

--
Biff
Microsoft Excel MVP


"Eric" wrote in message
...
Whatif the cell contains number only, such as 1, -1, 0.
Do you have any suggestions?
Thank everyone very much for any suggestions
Eric

"T. Valko" wrote:

Ok, I got this from your other post:

There is a table from cell M2 to W200, which
contains names and empty cell.


So, that means the range contains only TEXT.

Try this...

=COUNTIF(M2:W200,"?*")

That will count TEXT ONLY and will *exclude* from the count any cells
that
contain formula blanks ="".

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
What type of data is in the range? Is it text, numeric, both?

--
Biff
Microsoft Excel MVP


"Eric" wrote in message
...
="", which is not defined as empty cell in excel, so counta function
does
not
work for my case, do you have any more suggestions?
Thanks in advance for any suggestions
Eric

"Sheeloo" wrote:

Try the formula
=COUNTA(M2:W200)
in any cell outside the table.

"Eric" wrote:

I get a table from cell M2 to W200, and would like to count the
number
of
cells not empty? which the cell equals to "". Does anyone have any
suggestions?
Thanks in advance for any suggestions
Eric




.





All times are GMT +1. The time now is 04:49 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com