Excel Sumif Multiple Criteria

October 4, 2009 by vba excel
Filed under: Excel Formulas 
Sponsor

Excel Formulas Excel Sumif Multiple Criteria [Q]

I need help on microsoft excel sumif multiple criteria, Given range named “type” and “qty”, i am trying to write a formula that will sum the “qty” of multiple “type”s together. I’ve tried :

=sum(if((type=”apples”)+(type=”oranges”),qty,0)

and

=sumif(type,(or(”apples”),(”oranges”)),qty)
neither work….can someone help me please?

Excel Formulas Excel Sumif Multiple Criteria [A]

This formulas should help your problem on excel sumif multiple criterias:

=SUM(SUMIF(type,{”apples”,”oranges”},qty))

=SUMPRODUCT(–(ISNUMBER(MATCH(type,items,0))),qty)

Where items is a named range containing apples, oranges.

  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Google
  • E-mail this story to a friend!
  • Live
  • MisterWong
  • Propeller
  • StumbleUpon
  • Technorati
  • TwitThis
  • YahooMyWeb
  • Print this article!

Rate This Tips:

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...


Incoming excel search terms

excel sumif multiple criteria,sumif multiple criteria,excel countif multiple criteria,sumif with multiple criteria,countif multiple criteria,sum if multiple conditions,sumif two conditions,excel sum multiple criteria,excel sumif two conditions,sum if multiple criteria,excel sumif,excel countif two conditions,0,excel count multiple criteria,excel sumif multiple,excel sumifs multiple criteria,excel sumproduct multiple criteria,sumif multiple criteria excel,sumifs multiple criteria,mss,sumif excel multiple criteria,excel sumif 2 criteria,1,multiple criteria sumif,excel criteria,,excel sumif multiple conditions,google spreadsheet sumif multiple criteria,sum multiple criteria excel,excel multiple sumif,excel sum by type,excel sum if multiple criteria,excel sumif criteria,excel sumproduct multiple conditions,excel vba sumif multiple criteria,multiple sumif,sum if multiple conditions excel,sum if multiple criteria excel,sum multiple criteria,sumif 2 criteria,sumif excel,sumif multiple conditions,criteria excel,excel sum if,excel vba sumif,multiple criteria excel,multiple criteria in sumif,sum if excel,sumif between two date,sumif two criteria



Related Excel Tips

Comments

2 Comments on Excel Sumif Multiple Criteria

  1. Andrew Hurcum on Thu, 8th Oct 2009 12:28 am
  2. I thought multiple sumif’s didn’t work in previous excel version until v2007. My work around is to use sumproduct. - can you expand the example

    =SUM(SUMIF(type,{”apples”,”oranges”},qty))

    =SUMPRODUCT(–(ISNUMBER(MATCH(type,items,0))),qty)

  3. Michael Montgomery on Tue, 12th Jan 2010 7:06 pm
  4. Q: I have developed a small check register in Excel to track temporary account information and coolate by category of funds spent. I want to report on each category (e.g. “condo” expenses) by month in the reporting section of my spreadsheet. Using SUMIF I can define the categories (e.g. =SUMIF(B11:B100,”Condo”,E11:E100). However, if I want to add another Criteria I can utilize SUM and have figured out how to report on a specific date (e.g +SUM((B11:B100=”Condo”)*(C11:C100=11/2/2009″)*E11:E100) + CRT+SHFT+ENT; but that only retreives entries made for checks written on 11/2/2009. How do I write an equation for all checks written in November using SUM or SUMIF?

Have another excel answer or questions for this problem ?
Feel free to post it here..