Count rows with specific date

L

lakegoddess

Hi,
I tried to use the Microsoft Excel help but couldn't find what
needed. I was wondering if there was some type of function that count
the number of rows that has a specific date/month, like July. A
example would be like this

A B
1 *Name Birthday*
2 Joe 7/12/1980
3 Jack 8/11/1980
4 Jane 7/7/1980

If I wanted the number of people born in July (2), how would I d
that? Would there be a difference if the years were different
 
R

Ron Coderre

Try something like this:

=SUMPRODUCT(--(TEXT($B$1:$B$50,"yyyymm")="198007"))


Does that help?

Regards,
Ron
 
Top