Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Count Values in Excel

Status
Not open for further replies.

miletracker

Technical User
Apr 21, 2002
46
0
0
US
I HAVE A LIST OF VALUE 1100 TO 1500 I NEED TO COUNT ALL VALUES BETWEEN 1200 AND 1299
also need to count how many rows in a list contain a formula
MILETRACKER
 
for the count number part:

=COUNT(A:A)-COUNTIF(A:A,&quot;<1200&quot;)-COUNTIF(A:A,&quot;>1299&quot;)

substitute A:A with your list.

for the counting of miletracker, need more information.


Blue [dragon]

If I wasn't Blue, I would just be a Dragon...
 
I am sorry for not being clear I need to count how many rows of a list contain formulas without checking that sheet
rows could be blank or contain data

Thanks for the reply
 
The only formula that will tell you if there is something there or not is ISBLANK(). ISBLANK() will retrun a false if there is anything in the cell (even a formula that shows nothing). So, use ISBLANK to determine if your cells are blank or not, then count the output.



Blue [dragon]

If I wasn't Blue, I would just be a Dragon...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top