Index Match Summary from different worksheets

Markalon

New Member
Joined
Aug 22, 2014
Messages
11
I have a workbook with a Summary page and 5 employee pages:

Tabs are: Summary, Name1, Name2...Name5

On the summary page I have columns: Job (which is our job number), Panel (number of hours), Wire (number of hours) ... and others, all numbers of hours.

On each of the employee pages I have columns: Job (which is our job number), Panel (number of hours), Wire (number of hours) ... and others, all numbers of hours.

What I'm trying to do is for a given job, sum all the hours for each operation (Panel, wire, etc) and put the total in the summary page.

So on the summary page, lets say I have the following data:

Summary Page
JobPanelWire
1
2

<tbody>
</tbody>


On two employee pages I have:


Name1 Page
JobPanelWire
157
410

<tbody>
</tbody>


Name2 Page
JobPanelWire
14
268

<tbody>
</tbody>


I want the summary page to show:
Summary Page
JobPanelWire
197
268
410

<tbody>
</tbody>


Can somebody help me to figure out how to do this? Any and all help is appreciated. Thank you.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi Markalon,

On your summary sheet paste the following formulas.

B2 =SUMIFS(Name1!$B:$B,Name1!$A:$A,$A2)+SUMIFS(Name2!$B:$B,Name2!$A:$A,$A2)+SUMIFS(Name3!$B:$B,Name3!$A:$A,$A2)+SUMIFS(Name4!$B:$B,Name4!$A:$A,$A2)+SUMIFS(Name5!$B:$B,Name5!$A:$A,$A2)

C2 =SUMIFS(Name1!$C:$C,Name1!$A:$A,$A2)+SUMIFS(Name2!$C:$C,Name2!$A:$A,$A2)+SUMIFS(Name3!$C:$C,Name3!$A:$A,$A2)+SUMIFS(Name4!$C:$C,Name4!$C:$C,$A2)+SUMIFS(Name5!$C:$C,Name5!$C:$C,$A2)

When Row 2 fields show correct values just fill down the formula's

P.s Make sure you add all your Job numbers to your summary page.

Hopes this works for you and enjoy.

Don't forget to post Thanks/Live if it works for you.




 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,993
Latest member
Seri

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