Multiple Counting Criteria

  • Thread starter Thread starter Bentam7
  • Start date Start date
B

Bentam7

Hi all

I just can't get a formula to work that will simply count how many cells
match the criteria. Here's a brief section of the data:

Min Week1 Week2 Week3
10 5 10 15
8 8 6 4
25 20 30 50

How do I create a formula to count by week how many have met the minimum
target? The results should be 1 for Week 1, 2 for Week2, and 2 for Week 3.
Bear in mind that my actual data has 52 weeks and hundreds of rows of data.

Thanks
 
Hi all

I just can't get a formula to work that will simply count how many cells
match the criteria. Here's a brief section of the data:

Min Week1 Week2 Week3
10 5 10 15
8 8 6 4
25 20 30 50

How do I create a formula to count by week how many have met the minimum
target? The results should be 1 for Week 1, 2 for Week2, and 2 for Week 3.
Bear in mind that my actual data has 52 weeks and hundreds of rows of data.

Thanks

=SUMPRODUCT(--(B$2:B$1000>=$A$2:$A$1000))

filled across the 52 columns

Ken Johnson
 
Back
Top