SUMIF multiple criteria

mtyrrell13

Board Regular
Joined
Jan 7, 2005
Messages
138
I have searched the forum and while I am sure this has been done before, I can not seem to find out what I am doing wrong in this formula. I am trying to sum the totals if criteria "A" = "John" & Criteria "B" = 100% here is the formula I have

=SUM(IF(Cadence!A2:A59,Summary!A1,Cadence!I2:I59,IF(Cadence!R2:R59,Summary!A3,Cadence!I2:I59),0))
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hello, Try

=SUMPRODUCT(--(Cadence!A2:A59=Summary!A1),--(Cadence!R2:R59=Summary!A3),Cadence!I2:I59)

Or, with Ctrl+Shift+Enter, not just Enter,

=SUM(IF(Cadence!A2:A59=Summary!A1,IF(Cadence!R2:R59=Summary!A3,Cadence!I2:I59)))
 
Upvote 0
I have searched the forum and while I am sure this has been done before, I can not seem to find out what I am doing wrong in this formula. I am trying to sum the totals if criteria "A" = "John" & Criteria "B" = 100% here is the formula I have

=SUM(IF(Cadence!A2:A59,Summary!A1,Cadence!I2:I59,IF(Cadence!R2:R59,Summary!A3,Cadence!I2:I59),0))
If you're using Excel 2007 or later...

=SUMIFS(Cadence!I2:I59,Cadence!A2:A59,Summary!A1,Cadence!R2:R59,Summary!A3)

This one will work in any version of Excel...

=SUMPRODUCT(--(Cadence!A2:A59=Summary!A1),--(Cadence!R2:R59=Summary!A3),Cadence!I2:I59)
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

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