Hi everyone, I'm new in access and trying to make my first database.
I have a tblEmployees ( tblEmployees.CustomerID, tblEmployees.FirstName, tblEmployees.LastName )
This table is related to tblHours (one to many)
tblHours ( tblHours.CustomerID (from tblEmployees) , tblHours.ProjectID (from another tbl) tblHours.Hours
Now I created qryHours where i have
tblEmployees:
CustomerID group by
FirstName group by
LastName group by
tblHours:
Hours group by sum
The problem I have is, there are some employees that didn't work yet and I want that in qryHours their Hours value will be zero. Because now I can't even have them in the qryHours as they don't have any worked hours.
Any Suggestion Please?