counta not working

methody

Well-known Member
Joined
Jun 17, 2002
Messages
857
Hello there
I have range of cells in column A. some are filled with non numeric value. some have formulas which sometime have "". The formulas are of the type =IF(Z10=2, "", B3)

I want to count the number of non empty cells. counta does not seem to work as it does not treat the formulas which are giving "" as empty.

Can anyone help please
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
You could modify your formula to =ROWS(range)-COUNTBLANK(range) or =COUNTA(range)-COUNTBLANK(range)
 
Upvote 0
Hello there
I have range of cells in column A. some are filled with non numeric value. some have formulas which sometime have "". The formulas are of the type =IF(Z10=2, "", B3)

I want to count the number of non empty cells. counta does not seem to work as it does not treat the formulas which are giving "" as empty.

Can anyone help please

If the range consists of text values and you want to do a count of non-blank cells (that is, excluding "")...

=COUNTIF(A2:A100,"?*")

If there are also numbers to count in:

=COUNT(A2:A100)+COUNTIF(A2:A100,"?*")
 
Upvote 0

Forum statistics

Threads
1,214,400
Messages
6,119,284
Members
448,885
Latest member
LokiSonic

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top