Formula to find the correct column in a range, and sum the values in that column according to multiple criteria

Will85

Board Regular
Joined
Apr 26, 2012
Messages
240
Office Version
  1. 365
Platform
  1. Windows
I have a report that I receive weekly

Column A will always be Region
Column B will always be Color
Columns C through Z may change, the order may change, a column that had activity the prior week might not exist because their is no activity.

The headers in Column C through Z are known to me. For example, "Unit Sales".

"Unit Sales" might have been column G one week, and then it became column Y in the next.

I need a formula that I don't have to keep changing each week, that can look for "Unit Sales" in columns C through Z, find the correct column, and then sum the values in each row in that column that have a specific Region and Color.

For example, find Unit Sales, and sumif Region is North and Color is Orange.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try
=SUMPRODUCT((C1:Z1="Unit Sales")*C2:Z1000*(A2:A1000="someRegion")*(B2:B1000="some Color"))
 
Upvote 0
Or:

=SUMIFS(INDEX(C:Z,0,MATCH("Unit Sales",C1:Z1,0)),A:A,"someRegion",B:B,"some Color")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,332
Messages
6,124,314
Members
449,153
Latest member
JazzSingerNL

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