Summary Counts Functions to filter multiple conditions

G

Guest

Hello,

I have an XLS with following columns.

Defect# | Team_Name | Defect_Description | Date_Assigned | Status | Remarks


Based on the above data, I am creating the following summary sheet.


Status
OPEN NN
CLOSED NN
IN-PROGRESS NN

With above summary, I would be able to only Status-wise report.

I am getting the NN value using COUNT() function. I want to extend my
summary sheet to include the Team_Name also. The new summary should look
like below:

Status TOTAL Team1 Team2 Team3
OPEN NN NN1 NN2 NN3
CLOSED NN NN1 NN2 NN3
IN-PROGRESS NN NN1 NN2 NN3

With above summary, I would be able to see Team-wise and Status-wise report.

Any suggestions for to achieve the summary both team-wise + status-wise?

Regards,
Kamlesh
 
G

Guest

1 small correction in my post. I am using COUNTIF function and not the COUNT
function.
 
B

Bob Phillips

Try this

=SUMPRODUCT((A2:A4="CLOSED")*(C1:E1="Team1")*C2:E4)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top