Multiple Criteria in a SUMIF formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am tryring to use a SUMIF formula with two differnt criteria. I.E. Sum IF
<>Blank or Blank. Every time I add the second criteria it cancels out the
first one. Any suggestions?
 
Hi,
You can use the SUMPRODUCT function as follow:
=SUMPRODUCT( (Criteria1) * (Criteria2) * ... * (RangeToSum) )
The * between criteria behave as an AND
Eg:
=SUMPRODUCT ((A1:A100>10) *(A1:A100<=20) *(B1:B100="G") *(D1:D100))
 

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


Back
Top