Hello all, any help would be greatly appreciated.
I have a spreadsheet that totals up hours from different sheets in the workbook to a summary sheet. It won't let me post a file or a picture so I'll try and explain the best I can...
On each of the employee specific sheets (e.g. Sheet 2 - NeilB) I have 10 columns:
Date - Job No. - Panel - Wire - Tag - PPT - Test - Program - Rew - Misc
I manually enter the date, job number and number of hours for each of the remaining columns. No calculations here. I have several employees sheets. All their hours get totaled up on the summary sheet...
I have 10 columns on the summary sheet (Sheet 1 - Summary):
Job No. - System - Panel - Wire - Tag - PPT - Test - Program - Rew - Misc ... columns A through J
Job number is manually entered as is the system. In the remaining columns (C-J) I have the following formula (this is the formula in cell C54):
As you can see, its already a very long formula. And each of the columns are adjusted with the column specific information.
When I add a new employee, I have to go in and manually update every formula in each column. It works, but what I'm trying to figure out is how to create a criteria list of the employees so I can standardize the formula so I only have to update the employee list instead of each of the formulas. I'm sure there must be a way to do something like this?
Thanks in advance.
I have a spreadsheet that totals up hours from different sheets in the workbook to a summary sheet. It won't let me post a file or a picture so I'll try and explain the best I can...
On each of the employee specific sheets (e.g. Sheet 2 - NeilB) I have 10 columns:
Date - Job No. - Panel - Wire - Tag - PPT - Test - Program - Rew - Misc
I manually enter the date, job number and number of hours for each of the remaining columns. No calculations here. I have several employees sheets. All their hours get totaled up on the summary sheet...
I have 10 columns on the summary sheet (Sheet 1 - Summary):
Job No. - System - Panel - Wire - Tag - PPT - Test - Program - Rew - Misc ... columns A through J
Job number is manually entered as is the system. In the remaining columns (C-J) I have the following formula (this is the formula in cell C54):
Code:
=IF(SUMIFS(NeilB!$C:$C,NeilB!$B:$B,$A54)+SUMIFS(SteveJ!$C:$C,SteveJ!$B:$B,$A54)+SUMIFS(ScottG!$C:$C,ScottG!$B:$B,$A54)+SUMIFS(JoeS!$C:$C,JoeS!$B:$B,$A54)+SUMIFS(JeffC!$C:$C,JeffC!$B:$B,$A54)+SUMIFS(MikeG!$C:$C,MikeG!$B:$B,$A54)+SUMIFS(GregW!$C:$C,GregW!$B:$B,$A54)=0,"",SUMIFS(NeilB!$C:$C,NeilB!$B:$B,$A54)+SUMIFS(SteveJ!$C:$C,SteveJ!$B:$B,$A54)+SUMIFS(ScottG!$C:$C,ScottG!$B:$B,$A54)+SUMIFS(JoeS!$C:$C,JoeS!$B:$B,$A54)+SUMIFS(JeffC!$C:$C,JeffC!$B:$B,$A54)+SUMIFS(GregW!$C:$C,GregW!$B:$B,$A54)+SUMIFS(MikeG!$C:$C,MikeG!$B:$B,$A54))
As you can see, its already a very long formula. And each of the columns are adjusted with the column specific information.
When I add a new employee, I have to go in and manually update every formula in each column. It works, but what I'm trying to figure out is how to create a criteria list of the employees so I can standardize the formula so I only have to update the employee list instead of each of the formulas. I'm sure there must be a way to do something like this?
Thanks in advance.