Using SUMIFS to match two criteria and sum array

iamanexcelnoob

Board Regular
Joined
Jun 15, 2016
Messages
71
hey all.

quick and probably easy (for you guys) question.

i have a data pull on one tab and an analysis tab on another.

i want to extract said data by honing in on two specific criteria, located in Column A and Column B - and denoted as such in my analysis tab and summing the resulting 3 columns (D,E,F) if the conditions are met.

i'm sure there is a way with SUMIFS, but i just keep getting #VALUE! messages.

thanks!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try something along the lines of this


Excel 2010
ABCDEFG
1YesGreen123
2YesBlue45615
3YesRed789
Sheet1
Cell Formulas
RangeFormula
G2=SUMIFS(C:C,A:A,"Yes",B:B,"Blue")+SUMIFS(D:D,A:A,"Yes",B:B,"Blue")+SUMIFS(E:E,A:A,"Yes",B:B,"Blue")
 
Upvote 0
Control+shift+enter, not just enter:

=SUM(IF($A$2:$A$100=K2,IF($B$2:$B$100=L2,$D$2:$F$100)))

where K2:L2 houses the conditions which must hold for columns A and B.
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,725
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top