Summing Index and match over multiple rows

Lobsterboy1

Board Regular
Joined
Aug 5, 2016
Messages
90
Hi,

I am trying to sum multiple rows for an index and match formula. I have tried sumifs but cannot get it to work. Here is a sample
Book1
ABCDEFGHIJKL
16412122
2
3
4MTWTHF
5PERSONWMQYEP0405060708
6Dave2461212QMEYW
7Paul 3561212WQWMW
8John4661212WWMWY
9Sarah5761212WYWWQ
Sheet1
Cell Formulas
RangeFormula
H1:L1H1=INDEX($B$6:$F$6,MATCH(H6,$B$5:$F$5,0))


What I am wanting is in H1 to look down H6 to H9 and make H6 to be worth 6 due to a Q been worth 6 for Dave, H7 to be worth 3 due to a W been worth 3 for Paul and so on. The out come I am trying to get to is H1= 18, I1=26, J1=26, K1= 26 and L1=23. Not all rows will have a letter in each column. Am I using the wrong thing with index and match. Thanks for any help.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try:

Book1
ABCDEFGHIJKL
11826262623
2
3
4MTWTHF
5PERSONWMQYEP3/1/19004/1/19005/1/19006/1/19007/1/1900
6Dave2461212QMEYW
7Paul 3561212WQWMW
8John4661212WWMWY
9Sarah5761212WYWWQ
10
Sheet8
Cell Formulas
RangeFormula
H1:L1H1=SUMPRODUCT(SUMIF($B$5:$G$5,H6:H9,OFFSET($B$6:$G$6,ROW($B$6:$B$9)-ROW($B$6),0)))
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,288
Members
448,563
Latest member
MushtaqAli

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