MULTIPLE CRITERIA RETURNING SUM OF RESULTS

T

tom.tucker

I need to create a formula that will search through multiple columns
for different criteria and then give the sum of another column based
upon the search results. I tried using SUMIF, but it will only search
through one set of criteria. I need it to search for multiple criteria.
 
B

Bob Phillips

=SUMPRODUCT(--(rng1=value1),--(rng2="value2"),rng3)

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
M

MDubbelboer

look into sumproduct

=sumproduct(--($A$1:$A$500="Something",--($C$1$:$C$500="Something
else"))

make sure that the ranges you're searching through are of equal length.
 
T

tom.tucker

What I need to is search Column A for a certain number. Once it finds
all of that number then I need it to search Column E for another
number. Then I need to get the total of Column C and then return the
total to sheet 1 Cell A4. The formula you gave me worked, but it gave
me a total of 0, instead of what it should have been.
 
B

Bob Phillips

Then you didn't do it correctly (oh, and MDubbelboer missed a bracket)

What did you use?

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail 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

Similar Threads


Top