Turning a series of individual timesheets into a simple daily summary

Acesario

New Member
Joined
Aug 11, 2016
Messages
2
So in my spreadsheet I have a tab for each employee. Each tab is a weekly summary with a column for the date/hours/mileage/job that they worked. I want to create a separate daily spreadsheet that gives me a list of each employee that worked on a given day, and also pull the # of hours they worked, the mileage, and the job. I would ideally like this list to be concise (i.e. not include people who did not work that day, and also not have any blanks).

I think if I could get the list of employee names figured out I could easily do the rest, but I'm not sure where to start? Is this even something I can do with excel?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
this could very easily done with a simple vlookup formula.
 
Upvote 0
billfred
datehoursmileagejobdatehoursmileagejob
01/07/20168123job1billformula is=IF(B3>0,$A$1,"")01/07/2016675job6fred
02/07/20168133job2bill02/07/2016898job7fred
03/07/201610167job3bill03/07/201612135job8fred
04/07/2016895job4bill04/07/20160
05/07/20168110job5bill05/07/2016865job10fred
I would first of all pull all data onto a new master sheet as above
(assumes you only have 2 employees
if data on each tab is as above ie A1:D7
then K1 (shows fred) is =sheet2!A1
drag across 3 and down 6 to get the info
could do this with a macro easily if you have 50 employees
01/07/2016bill 8 hours 123 miles on job1 fred 6 hours 75 miles on job6
02/07/2016bill 8 hours 133 miles on job2 fred 8 hours 98 miles on job7
03/07/2016bill 10 hours 167 miles on job3 fred 12 hours 135 miles on job8
04/07/2016bill 8 hours 95 miles on job4
05/07/2016bill 8 hours 110 miles on job5 fred 8 hours 65 miles on job10
formula giving first row of summary table
=IF(E3="","",E3&" "&B3&" hours "&C3&" "&"miles on "&D3)&" "&IF(O3="","",O3&" "&L3&" hours "&M3&" "&"miles on "&N3)
THIS IS A CRAZY WAY TO HANDLE DATA SO SEE NEXT POST IN 5 MINUTES

<colgroup><col><col span="5"><col><col span="3"><col><col span="6"></colgroup><tbody>
</tbody>
 
Upvote 0
Employee NameMike PHoursHoursHoursHoursHours
Date

<tbody>
</tbody>
JobSaturdaySundayMondayTuesdayWednesday
8/6/16Garbage0
8/7/163
8/8/165

<tbody>
</tbody>


Here is a simplified version of my weekly summary spreadsheets, I have one of these for every employee, I'm trying v-lookup now and it doesn't seem like it will work because the person's name is not in every row next to the date, I suppose I could hide a row and do it that way but other than editing all 15 sheets is there another way?

I'm looking at doing an if statement that returns the value of the cell where the name is only if there is a positive value in the hours column for the given day, which seems to work but I'm not sure how to "simplify" it so that if the first person didn't work that day, it automatically looks at the next person, and so on? I was trying to use a combination with the "indirect" function and a named group which has all the sheet names in it but I can't quite get the formula down:
=IF(COUNTIF('[Weekly Summary.xlsx]SheetNames'!$A$6:$A$12,A1)>0,'[Weekly Summary.xlsx]SheetNames'!$K$3:$R$3)

When I try this it only reads the first value of the list "sheetnames" and therefore only looks at the first sheet.
 
Upvote 0
hours worked table
datehoursmileagejob01/07/201602/07/201603/07/201604/07/201605/07/2016
bill01/07/20168123job1fred681208
bill02/07/20168133job2bill881088
bill03/07/201610167job3
bill04/07/2016895job4
bill05/07/20168110job5
fred01/07/2016675job6
fred02/07/2016898job7
fred03/07/201612135job8
04/07/20160mileage table
fred05/07/2016865job1001/07/201602/07/201603/07/201604/07/201605/07/2016
fred7598135065
bill12313316795110
jobs table
01/07/201602/07/201603/07/201604/07/201605/07/2016
fred
bill
not sure how to do this but is this aproach possible

<colgroup><col><col><col span="5"><col><col span="2"><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,567
Messages
6,120,268
Members
448,953
Latest member
Dutchie_1

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