countif in excel

L

LDC

I am trying to count using multiple conditions.
EX.

Column A Column B

Holiday Male
Summer Female
Sun Male
Summer Male

I want to count how many people are in column a as holiday and also male.
 
D

Dave R.

=sumproduct((a1:a4="Holiday")*(b1:b4="Male"))

I'm not sure if this will help you in Access or not but it's worth a shot.
 
Top