Sum Multiple Columns with Multiple Criteria

invest4value

New Member
Joined
Mar 8, 2017
Messages
2
Say I have the following chart (See below) and I'm trying to sum the regions that have product overlap. What type of SumIf or SumProduct formula could I use to accomplish this task?

Product #Region 1Region 2Region 3Region 4 Region 5Region 6Region 7Region 8Region 9
10.75%
20.37%0.13%
31.25%0.72%
49.50%0.62%
50.19%0.25%0.07%
60.44%
70.57%
80.33%0.13%
90.25%
100.54%6.50%
110.53%
120.51%
130.08%0.43%
140.51%
150.23%0.25%
160.48%
170.45%
180.41%7.60%
190.41%
200.41%
210.39%
220.31%
230.38%

<tbody>
</tbody>


I want to find the overlap between Region 1 & 2, Region 1 & 3, Region 1 & 4, etc.

For example, the sum of Region 1 & 2 is 0.51%. What would be the Excel formula to help me calculate that amount?

I'm looking to find the sum between two regions?

Thanks for your help.
 

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.
Say I have the following chart (See below) and I'm trying to sum the regions that have product overlap. What type of SumIf or SumProduct formula could I use to accomplish this task?

Product #Region 1Region 2Region 3Region 4 Region 5Region 6Region 7Region 8Region 9
10.75%
20.37%0.13%
31.25%0.72%
49.50%0.62%
50.19%0.25%0.07%
60.44%
70.57%
80.33%0.13%
90.25%
100.54%6.50%
110.53%
120.51%
130.08%0.43%
140.51%
150.23%0.25%
160.48%
170.45%
180.41%7.60%
190.41%
200.41%
210.39%
220.31%
230.38%

<tbody>
</tbody>


I want to find the overlap between Region 1 & 2, Region 1 & 3, Region 1 & 4, etc.

For example, the sum of Region 1 & 2 is 0.51%. What would be the Excel formula to help me calculate that amount?

I'm looking to find the sum between two regions?

Thanks for your help.

Exactly which numbers are you adding together to make THIS true... For example, the sum of Region 1 & 2 is 0.51%.
 
Upvote 0
Sorry, the sum is between Region 2 & 3. 0.08% + 0.43% = 0.51%

Another example would be the sum between Region 5 & 7. 9.50% + 0.62% = 10.12%
 
Upvote 0
Sorry, the sum is between Region 2 & 3. 0.08% + 0.43% = 0.51%

Another example would be the sum between Region 5 & 7. 9.50% + 0.62% = 10.12%
OK so how what are you trying to do beyond a SUM for each row?
Are you looking for a quick solution to add every possible combination of 9 numbers paired?

I am confused because Product 5 has 3 percents... do you need to total the three individual pairings or add up all 3 (a SUM formula)
 
Last edited:
Upvote 0
Say I have the following chart (See below) and I'm trying to sum the regions that have product overlap. What type of SumIf or SumProduct formula could I use to accomplish this task?


I want to find the overlap between Region 1 & 2, Region 1 & 3, Region 1 & 4, etc.

For example, the sum of Region 1 & 2 is 0.51%. What would be the Excel formula to help me calculate that amount?

I'm looking to find the sum between two regions?

Thanks for your help.
Your data is A1:J24, ex. M2="Region 2", N2="Region 3"
You try this array formula in M3:
PHP:
=SUM((A2:A24=MATCH(TRUE,MMULT(--(COUNTIF(M2:N2,B1:J1)*B2:J24>0),TRANSPOSE(COLUMN(B1:J1))^0)=2,))*COUNTIF(M2:N2,B1:J1)*B2:J24)
Entered with Ctrl+Shift+Enter!!!
Hope to help you!!!
 
Upvote 0

Forum statistics

Threads
1,214,793
Messages
6,121,619
Members
449,039
Latest member
Mbone Mathonsi

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