Count number of "Yes" between two dates

  • Thread starter Thread starter Sophie
  • Start date Start date
Try this:

=SUMPRODUCT(--(A1:A10>=DATE(2009,2,1)),--(A1:A10<=DATE(2009,2,28)),--(B1:B10="Yes"))

This would count the number of times "Yes" appears in Column B when the date
in column A is in Feb 2009.

HTH
Elkar
 
Hi,

You can't do this with COUNTIF because there are three conditions. If you
are using 2007 you can use

=COUNTIFS(A1:A10,">="&D1,A1:A10,"<="&E1,B1:B10,"Yes")

In this example D1 and E1 contain the dates you are looking between.
 
Back
Top