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
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
On two employee pages I have:
Name1 Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]5[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
Name2 Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]6[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
I want the summary page to show:
Summary Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]9[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]6[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
Can somebody help me to figure out how to do this? Any and all help is appreciated. Thank you.
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
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
On two employee pages I have:
Name1 Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]5[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
Name2 Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]6[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
I want the summary page to show:
Summary Page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Job[/TD]
[TD]Panel[/TD]
[TD]Wire[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]9[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]6[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
Can somebody help me to figure out how to do this? Any and all help is appreciated. Thank you.