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

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Haseeb Avarakkan

Well-known Member
Joined
Sep 28, 2010
Messages
902
Office Version
  1. 365
Platform
  1. Windows
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

T. Valko

Well-known Member
Joined
May 9, 2009
Messages
16,623
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,191,190
Messages
5,985,200
Members
439,947
Latest member
fabiannic

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
Top