Countif Range Based on Row

Joecam

Member
Joined
May 22, 2014
Messages
41
Reaction score
0
Points
6
Excel Version(s)
365
I have a table that contains a client name, target performance metrics and actual performance metric over the course of a year. Each client has multiple performance metrics which get monitored and each metric has a different target performance rate.

I'm trying to create a summary view of how many performance metrics have been met for each client. I'm currently doing this by adding a bunch of countif statements, but having to create so many statements is very time consuming and if I add a client I need to completely recreate the formulas, so I'm looking to upgrade to a formula that will work even if I add new clients or new performance metrics to an existing client.

What I need is a formula that will count the number of instances where:
Column A on the Data Driver sheet is equal to Column C on the Client Summary sheet
& Columns D:AA is greater than or equal to Column C on the Data Driver sheet
& where the date in Client Summary is equal to the date in Data Driver

Sorry, I know I'm not explaining this well! Adding a sample spreadsheet to assist.
 

Attachments

  • Summary Sample.xlsx
    196.8 KB · Views: 10
Hi @Joecam,

Try to use:
=SUMPRODUCT(--($C5='Data Driver'!$A$7:$A$45);--('Data Driver'!D$7$45>='Data Driver'!$C$7:$C$45)) in cell E5 and copy formula to all range of data then

My Excel is in spanish but i think SUMPRODUCT is OK for en version. Probably you will also need to change ; by ,

If in doubt, check the attached file
 

Attachments

  • Summary Sample.xlsx
    197.2 KB · Views: 8
Back
Top