I have 3 tables:
Table 1: Work productivity data from our delivery management system. This has the employee’s email and date of shift.
Table 2: Employee Data from our HR system. This has the employee’s email address and employee ID.
Table 3: Shift data from our clock in/clock out system. This includes the employee ID, hours worked, and date of shift.
There is a way to link all three as they share sufficient fields. I would like to match the productivity data for a specific employee on a specific date to the hours work within Table 1. So I have hours worked in there.
For example, I’d like in Table 1:
Bryan - bryan@hotmac.com - employee ID: 113495 - 34 tasks - 4.73 hours worked.
I can link each table, but I’m stuck on how to match the shifts on the correct date between Table 1 and Table 3.
Any help is really welcomed. Thank you.