Need help with Counters

V

Vic

I have a list of names from A8 thru A70. For each name I need to put in M8
thru M70 counters of how many occurences of those names from D146 thru D1465
I have. But only count the ones that have "1-Yes" in the corresponding J146
thru J1465.

I am trying to put this one in M8 but it does not work:
=SUMPRODUCT((D146:D1465=A8:A70)*(J146:J1465="1-Yes"))

Please help me to fix it. I need this very urgently.

Thank you.
 
M

Max

Try:
=SUMPRODUCT((ISNUMBER(MATCH(D14:D1465,A8:A70,0))*(J14:J1465="1-Yes")))
Success? hit the YES below
 
T

tompl

You just need to delete ":A70" resulting in:

=SUMPRODUCT((D146:D1465=A8)*(J146:J1465="1-Yes"))

Tom
 
T

tompl

Better, use this and copy it down to cell M70:

=SUMPRODUCT(($D$146:$D$1465=A8)*($J$146:$J$1465="1-Yes"))
 
V

Vic

I used this =SUMPRODUCT(($D$146:$D$1465=A8)*($J$146:$J$1465="1-Yes")) copied
that down from M8 thru M70, and I still get zeroes in M8 thru M70.
What is the fix for this?
Thanks
 

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

Similar Threads

Help With Formulas 6
Sum Every Third Column In A Row with 68 Columns 4
Complex Match 4
Media Analysis formula---Need Help 1
Calc time with a lookback #2 7
Formula help needed 2
Complex match 1
averaging a cell 1

Top