=COUNT issues

Traun2445

New Member
Joined
Jul 20, 2014
Messages
18
Hello!

I am currently trying to add up how many incidents are created monthly. The incident is in column A. There are also dates in column A. I only want to add up how many incidents there were. I have tried many different ways and cannot get it to work!:confused:

I thought I would be able to figure this out, but I have been defeated. I have tried stating if A8<>"", since that is the first cell that must contain an incident number. But that did not work, I tried COUNTIF, COUNTIFS, and still nothing. I tried figuring out to state if it is not a date, count it, but no luck with that either.

Please help!

THANKS!!!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Can you post a SMALL sample of data, with what you want to achieve
 
Upvote 0
Maybe try this.....depending on your data format
Adjust the ranges to suit
Code:
=COUNTA(A1:A100)-COUNT(A1:A100)
 
Upvote 0
Hello,

Thanks for responding. I tried what you suggested and it did not work either. What other information from me do you need? I tried copying and pasting a small screen shot on a previous thread and that did not work.

Hopefully this helps:

I only want to count how many incidents there are, excluding the dates.
I want the formula in B:1

ab
1Total:
2
37/19/2014
4INC - these cells will be blank until a number is entered
5INC
67/20/2014
7INC
8INC
9INC

<tbody>
</tbody>

Does that clarify a little?

Thanks again!
 
Upvote 0
OK, maybe this.....but it appears that your data is ALL formateed as text.
If this is the case how will Excel know what is text and what is a date ???


Excel 2003
AB
1Total:5
2
325/12/1952
4INC - these cells will be blank until a number is entered
5INC
61/04/2014
7INC
8INC
9INC
Sheet1
Cell Formulas
RangeFormula
B1=SUMPRODUCT(--(ISTEXT(A2:A9)))
 
Upvote 0
? stands for 1 char, * stands for 0 or more chars. Numbers are of course excluded.

So, ?* stands for text of with length 1 or longer.

if by using "*" itself can exclude the number why put "?" in the formula? *cause all we want is just to exclude the date :)
is there any symbols that can be put as criteria?

Thanks,
 
Upvote 0
if by using "*" itself can exclude the number why put "?" in the formula? *cause all we want is just to exclude the date :)
is there any symbols that can be put as criteria?

Thanks,

* means 0 or more chars. Do you want to count in the blank cells?
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,431
Members
448,961
Latest member
nzskater

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