Advanced Sumifs Formulat

CM722

New Member
Joined
Jan 13, 2016
Messages
16
Hi, Can anyone help correct the below formula? I am not getting hte results for all of the data below.



=SUM(SUMIFS('CRD Plan'!F:F,'CRD Plan'!$D:$D,"Assembled Goods",'CRD Plan'!$E:$E,"Wip Job Outs - Planned",'CRD Plan'!$B:$B,{"MFG","CRC"},'CRD Plan'!$BG:$BG,{"EW-6 1.5X2","EH-6 2X3","EJ-10 3X3","ET-28 5X5","EU-16 4X4","EE-8 2X2","ES-16 3X3","ES-20 4X4","ET-32 5X5","EV-48 7X7","ES-24 4X4","EV-36 6X6","ES-12 3X3","EC-26 4X4","EX-10 3X3","EX-12 3X3","EV-40 6X6"}))/1000/4
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
To use two array criteria in SUMIFS one should be a vertical array and the other a horizontal array.

See if this works

=SUM(SUMIFS('CRD Plan'!F:F,'CRD Plan'!$D:$D,"Assembled Goods",'CRD Plan'!$E:$E,"Wip Job Outs - Planned",'CRD Plan'!$B:$B,{"MFG";"CRC"},'CRD Plan'!$BG:$BG,{"EW-6 1.5X2","EH-6 2X3","EJ-10 3X3","ET-28 5X5","EU-16 4X4","EE-8 2X2","ES-16 3X3","ES-20 4X4","ET-32 5X5","EV-48 7X7","ES-24 4X4","EV-36 6X6","ES-12 3X3","EC-26 4X4","EX-10 3X3","EX-12 3X3","EV-40 6X6"}))/1000/4

Note that in {"MFG";"CRC"} the separator is a semicolon ; (not a comma) creating a vertical array.

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,790
Messages
6,121,608
Members
449,038
Latest member
apwr

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