A
Adam
I have a report that provides a total job time in DD:HH:MM:SS format as shown
below that is derived from a DateDiff formula.
Job Time: ([JobTime]\86400) & ":" & Format(([JobTime]\3600) Mod 24,"00") &
":" & Format(([JobTime]\60) Mod 60,"00") & ":" & Format([JobTime] Mod 60,"00")
How do I get my report to sum up the total time worked on a job? I want the
total to be after the last record of each job so you can see a total time for
the entire job for all workers. Currently my report look something like
this...
TempID JobID Name Item Units Produced Job Time
1 2 Joe 123 500 00:00:02:30
2 2 Bob 123 250 00:00:04:40
(Here is where I want
the total)
TempID JobID Name Item Units Produced Job Time
1 4 Jane 456 500 00:00:05:30
2 4 Tim 456 750 00:00:08:40
(Here is where I want
the total)
Any help is much apprciated.
below that is derived from a DateDiff formula.
Job Time: ([JobTime]\86400) & ":" & Format(([JobTime]\3600) Mod 24,"00") &
":" & Format(([JobTime]\60) Mod 60,"00") & ":" & Format([JobTime] Mod 60,"00")
How do I get my report to sum up the total time worked on a job? I want the
total to be after the last record of each job so you can see a total time for
the entire job for all workers. Currently my report look something like
this...
TempID JobID Name Item Units Produced Job Time
1 2 Joe 123 500 00:00:02:30
2 2 Bob 123 250 00:00:04:40
(Here is where I want
the total)
TempID JobID Name Item Units Produced Job Time
1 4 Jane 456 500 00:00:05:30
2 4 Tim 456 750 00:00:08:40
(Here is where I want
the total)
Any help is much apprciated.