SUMIFS with Multiple Criteria in one column

gavs73

Board Regular
Joined
Apr 22, 2008
Messages
138
Hi, would appreciate any help with this, I want to have multiple option matches against one column, is this possible ?

=SUMIFS('Finance'!$M:$M,'Finance'!$V:$V, OR(AL7,AL8,AL9,AL10,AL11,AL12,AL13),'Finance'!$C:$C, D29)

Thanks
Gavin
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try:

=SUM(SUMIFS('Finance'!$M:$M,'Finance'!$V:$V,AL7:AL13,'Finance'!$C:$C, D29))

with Control+Shift+Enter (depending on what version of Excel you have).
 
Upvote 0
Try

=SUM(SUMIFS('Finance'!$M:$M,'Finance'!$V:$V,{AL7,AL8,AL9,AL10,AL11,AL12,AL13},'Finance'!$C:$C, D29))
 
Upvote 0
Try

=SUM(SUMIFS('Finance'!$M:$M,'Finance'!$V:$V,{AL7,AL8,AL9,AL10,AL11,AL12,AL13},'Finance'!$C:$C, D29))
If AL7, AL8, etc. were values, not cell addresses, you could put them in an array constant like this, but you'd still need to put quotes around each one. If they are cell addresses, then you need to do it as I showed in post 2. The Control+Shift+Enter will be required unless you have Excel 365 with the new calculation engine. But the formula in post 3 will not work as shown.
 
Upvote 0
Thanks @Eric W that is what I did in my test data! Don't know why I posted it like that.......... must be coffee time...........
 
Upvote 0

Forum statistics

Threads
1,214,801
Messages
6,121,644
Members
449,045
Latest member
Marcus05

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