COUNTIF AND

I

IMS Lori

Is there any way to meld these two together? I have a column with our sales
people's initials in them, and another column with the status of their
projects:
Column D Column F
AA neu
BB eng
AB s
AC eng

I want to sum the info so we can see how many of AA's job statuses are "eng"

so I want it to count the number of times the status in column F is "eng"
but only if the "eng" is the same row as "AA"'s initials in column D.

TIA!
 
R

Ron Coderre

With
A1: (the initials to find....eg ABC)
A2: (the status to count....eg Done)

This formula counts the projects with that status for the
person with those initials:
A3: =SUMPRODUCT((D2:D1000=A1)*(F2:F1000=A2))

Is that something you can work with?
Post back if you have more questions.

Regards,

Ron
Microsoft MVP - Excel
 
L

Lars-Åke Aspelin

Is there any way to meld these two together? I have a column with our sales
people's initials in them, and another column with the status of their
projects:
Column D Column F
AA neu
BB eng
AB s
AC eng

I want to sum the info so we can see how many of AA's job statuses are "eng"

so I want it to count the number of times the status in column F is "eng"
but only if the "eng" is the same row as "AA"'s initials in column D.

TIA!


Try the SUMPRODUCT formula for this.

=SUMPRODUCT((D1:D1000="AA")*(F1:F1000="eng"))

change 1 and 1000 so that your data is covered

Hope this helps. / Lars-Åke
 
I

IMS Lori

Thanks so much! Worked like a charm!

Lars-Ã…ke Aspelin said:
Try the SUMPRODUCT formula for this.

=SUMPRODUCT((D1:D1000="AA")*(F1:F1000="eng"))

change 1 and 1000 so that your data is covered

Hope this helps. / Lars-Ã…ke
 

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