SumIf Array - Multiple search criteria, multiple sum columns

CMA214

New Member
Joined
Feb 3, 2016
Messages
2
Hey all, hoping someone can help me out.

I have a table, where in column A I have different departments (middle market, retail, etc.), each broken out by either "Operational xx" / "Stable xx", or "Non-operational xx" / "Non-Stable xx"

In columns E-P, I have a cash schedule broken out by months, ie. Month 1, Month 2, etc.

I have a formula that can Sum column E based upon whether column A says Operational or Stable. My problem is that I want to Sum columns E:P. Is this possible? I can't seem to figure it out. Here is the formula I am currently using:

{=SUM(SUMIF($A$4:$A$35,{"Operational*","Stable*"},$D$4:$D$35))}

I am only using the asterisks after the word, so it doesn't pick up the "Non" segments.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
maybe something to try...

=SUMPRODUCT((LEFT($A$2:$A$10,1)="o")*(E2:P10))

unfortunately the wildcards won't work with sumproduct and summing multiple ranges wont work with sumif

and maybe substitute the "o" with "s" for summing stable ?
 
Upvote 0
Not a bad idea... I suppose another way to go would be add a column to the left, and add 1s and 0s for a sumproduct to reference based on "stable/operational" or "non-stable".

Like you said, wildcards & multiple ranges simply may not work.
 
Upvote 0
Hi

There would also be other options, for ex. to compare the left part, a workaround for the XXX*:

=SUMPRODUCT(((LEFT($A$4:$A$35,LEN("Operational"))="Operational")+(LEFT($A$4:$A$35,LEN("Stable"))="Stable"))*$E$4:$P$35)

This could be made more compact if we had more options.

We could also use the SumIf() but since the ranges must have the same dimensions we'd have to repeat the first one as many times as the columns in the first one.
 
Upvote 0

Forum statistics

Threads
1,215,844
Messages
6,127,246
Members
449,372
Latest member
charlottedv

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