Complicated Count if and sumif help **Big Question!!!

J

Jeremy

I need to cout all instances when the following criteria are met

AE7:AE9999 (in the Data sheet) = $C$1 (in the Monthly Summary sheet)
and
The name in L7:L9999 (in the data sheet) = $A$18 (in the Monthly Summary
sheet)
**This formula will be copied into several cells to count each person's name

I need to add up the $ amounts in Q7:Q9999 for each of those lines (this
will be a seperate formula)

EX
Name #of Complaints $Credited Total
Allie 10 100
---------------------------------------------

Then I have another table that counts some if the same things, but seperates
them more

AE7:AE9999 (in the Data sheet) = $C$1 (in the Monthly Summary sheet)
and
The name in L7:L9999 (in the data sheet) = $A$18 (in the Monthly Summary
sheet)

I will need to seperate the reason for the complaint which is in K7:K9999 of
the Data sheet. There are only 3 options: pricing, freight, other.

Thanks a ton for the help.
 
S

sb1920alk

You want SUMPRODUCT. It can be used to count/sum based on multiple critiera.

Something like =SUMPRODUCT(--(AE7:AE9999=$C$1),--(L7:L9999=$A$18),Q7:Q9999)

If you need to look up text (reason for the complaint), use something like:
=INDEX(K7:K9999,SUMPRODUCT(--(AE7:AE9999=$C$1),--(L7:L9999=$A$18),ROW(K1:K9993)))
 

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

I think I should use Sumif 1
More SUMPRODUCT help 4
Complicated Table Functions 1
sumproduct help 3
Help With Formula 1
sumif and or 8
COUNTIF for summary Table 4
Multiple IF and VLOOKUP 1

Top