Link to home
Start Free TrialLog in
Avatar of mishlce
mishlce

asked on

Employee Shift Calculation in Access

I recently asked a question and it was answered successfully, however now I am adding to the originally asked question adding some additional scenarios.  Pls see Attachment.  
 Anna tab shows the data (table) I have in access.  The Results wanted tab shows what I want to display after my data is quried for Start of shift and End of shift.  There are multiple services logged during a shift but I just want the Start and End time of the shift and not all the detail in between.  AS I stated there are multiple scenarios.  Day shift, PM Shift Over night shift etc.  Pls see Attachment.  I think I chose the wrong Zoning originally.  I want to do this in Access Database as my table is stored in Access.
Anna.xls
Avatar of Amgad_Consulting_Co
Amgad_Consulting_Co
Flag of Egypt image

Hi,

is there any relation between Employees and shifts?, is there a table that says that employee X is working on shift type M ?
Avatar of mishlce
mishlce

ASKER

Unfortunatly no. This is a on demand service business and an employee can work many different types of shifts as they schedule their own services to meet customer needs.
Avatar of peter57r
You will have to define  'long break' if you want to show multiple shifts for the same person.
Avatar of mishlce

ASKER

meaning a time (hrs) between shifts
Not good enough. You have to be precise.

Do you mean at least 1 hour?
Avatar of mishlce

ASKER

It is not consistent from day to day the amount of hours between an employees shift.  could be 6 up to 48 as they take days off.  They receive reqeusts for service, they call cust sched a svc time w customer and they log their start and end time for each service, but there is no consistancy in days off, or hours between shifts.  Could be 6 Hrs up to 48. So your saying I will not be able to get the results I am looking for.  
As long as you are saying that the MINIMUM gap between shifts is 6 hours then you can handle the problem.  It doesn't matter if the actual gap is greater than 6 hours.

Avatar of mishlce

ASKER

The below question is the question I posted originally  March 2nd, and was answered successfuly. This worked for the cross over midnight shift but didn't work for other scenarios.  How could I adjust this qry to work with all scenarios utilizing the 6 hours as gap time.

Question: I want the Max PM Start Time each day and the Max AM End Time the following day
This will then reach the shift worked starting with first acct worked start time and last account
worked end time. I want this for each day.  I am looking for qry to do this in access as my data is stored in an access table.

There are multiple start and end times of svc I just want to see first of shift and end of shift.

So it looks like this.  

Start Time:                       End Time:                    Hours Worked
11/8/10 10:10 PM             11/9/10 2:39 AM             4.23
11/9/10 7:52 PM               11/10/10 12:14 AM         4.22

MaxEndTime:
SELECT FORMAT(anna.[End Time],"Medium Date") AS EndTime,
MAX([End Time]) AS MaxEndTime
 FROM anna
   WHERE HOUR([End Time]) < 12
GROUP BY FORMAT(anna.[End Time],"Medium Date");

MinStartTime:
SELECT FORMAT(anna.[Start Time],"Medium Date") AS StartTime,
         MIN([Start Time])                         AS MinStartTime
    FROM anna
   WHERE HOUR([Start Time]) >= 12
GROUP BY FORMAT(anna.[Start Time],"Medium Date");

Now query these two queries.
SELECT t1.MinStartTime,
       t2.MaxEndTime
  FROM (MinStartTime AS t1
        INNER JOIN MaxEndTime AS t2
          ON DATEADD("d",1,t1.StartTime) = DATEVALUE(t2.EndTime));
ASKER CERTIFIED SOLUTION
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mishlce

ASKER

Very Helpful