SUM IF Formula

ryan_law2000

Well-known Member
Joined
Oct 2, 2007
Messages
738
Hey Everyone here is the formula i have now

Code:
=SUMIF($A$1:$A$479,"Packers",C$1:C$479)

I need to add another factore into this but im not to sure how

First search "Packers" in Range A1:A479
then look for "Brooks" in Range B1:B479
then sum the totals together in range C1:C479

Any ideas???
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try

=SUMPRODUCT(--(A1:A479="Packers"),--(B1:B479="Brooks"),C1:C479)
 
Upvote 0
Hi, you can use the SUMPRODUCT formula:
=SUMPRODUCT(($A$1:$A$479="Packers")*($B$1:$B$479="Brooks")*$C$1:$C$479)
 
Upvote 0

Forum statistics

Threads
1,207,095
Messages
6,076,552
Members
446,213
Latest member
bettigb

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