I am in the process of creating a database that will track employees hours worked.
Here are my tables:
PayRate:
EmpNo
HomeDept
HourlyPayRate
HoursWorked:
EmpNo
WorkDate
RegHrs
OTHrs
Vacation
Sick
Holiday
etc.
OtherDeptWorked:
EmpNo
WorkDate
TempDept
TempDeptRegHrs
TempDeptOTHrs
I an needing to generate a report that shows the following:
Entry Home Reg O/T Temp Temp Temp
Emp No. Dept Hrs Hrs Dept RegHrs OTHrs
John 1 620 60 4
John 2 620 615 12 4
John 3 620 678 8
Mary 1 678 80
Sam 1 615 80
This report is for a 2-week period. The first entry for every employee will be calculated from the HoursWorked table. Additional entries for employees will be only if they have records in the OtherDeptWorked table. How do I generate the Entry No.?
Thanks in advance for any help/suggestions,
Debbie
Here are my tables:
PayRate:
EmpNo
HomeDept
HourlyPayRate
HoursWorked:
EmpNo
WorkDate
RegHrs
OTHrs
Vacation
Sick
Holiday
etc.
OtherDeptWorked:
EmpNo
WorkDate
TempDept
TempDeptRegHrs
TempDeptOTHrs
I an needing to generate a report that shows the following:
Entry Home Reg O/T Temp Temp Temp
Emp No. Dept Hrs Hrs Dept RegHrs OTHrs
John 1 620 60 4
John 2 620 615 12 4
John 3 620 678 8
Mary 1 678 80
Sam 1 615 80
This report is for a 2-week period. The first entry for every employee will be calculated from the HoursWorked table. Additional entries for employees will be only if they have records in the OtherDeptWorked table. How do I generate the Entry No.?
Thanks in advance for any help/suggestions,
Debbie