Sumproduct - can in have multiple criteria in a single array?

thorpyuk

Well-known Member
Joined
Mar 14, 2006
Messages
1,453
Hiya,

What i'm trying to do is this:

=SUMPRODUCT(--('AW08 Data'!$B$2:$B$100="D2056"),--('AW08 Data'!$A$2:$A$100=Analysis!$N$1),'AW08 Data'!C$2:C$100)

But I have another 9 codes as well as D2056.... can i use an 'or statement' within this function, or am i better off trying another route?

Thanks!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.

Aladin Akyurek

MrExcel MVP
Joined
Feb 14, 2002
Messages
85,210
Hiya,

What i'm trying to do is this:

=SUMPRODUCT(--('AW08 Data'!$B$2:$B$100="D2056"),--('AW08 Data'!$A$2:$A$100=Analysis!$N$1),'AW08 Data'!C$2:C$100)

But I have another 9 codes as well as D2056.... can i use an 'or statement' within this function, or am i better off trying another route?

Thanks!

Place the relevant codes in a range like, say, X2:X8, then invoke:

Code:
=SUMPRODUCT(
   --ISNUMBER(MATCH('AW08 Data'!$B$2:$B$10,$X$2:$X$8)),
   --('AW08 Data'!$A$2:$A$100=Analysis!$N$1),
   'AW08 Data'!C$2:C$100)
 
Upvote 0

Forum statistics

Threads
1,190,748
Messages
5,982,724
Members
439,791
Latest member
NwaTech_

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