|  

» Counting the Number of Players According to Their Score in a Particular Quarter

Problem:

Finding the number of players (column A) who scored over 3 points (column C) in the first quarter (column B).

Solution:

Use the SUMPRODUCT function as shown in the following formula:
=SUMPRODUCT((B2:B17=F2)*(C2:C17>F3))
Screenshot // Counting the Number of Players According to Their Score in a Particular Quarter
Counting the Number of Players According to Their Score in a Particular Quarter


Rate This Tip
12 34 5
Rating: 3.41     Views: 8215
Alternate formula
Dennis Taylor
Or try this array formula:
{=SUM(IF(C2:C17>3,IF(B2:B17=1,1)))}
Click here to post comment
For Registered Users
Name
Comment Title
Comments