formula needed for counting months

S

Shocked

I have a column of dates formated mm/dd/yyyy. I need a formula tha
will count the number of occurances for, say, January.

Any ideas
 
M

Max

Assume the dates are in A1:A100
Try: =SUMPRODUCT(--(MONTH(A1:A100)=1))
to count occurences for January ("1")
 
Top