I have a table the lists employees, e.g.,
And a second table that lists how many hours they each worked that week, e.g.,
I want a Query to Sum the hours for the week. So, I created a simple Select Query that links the employees of the first table to the second and sums the results, e.g.,
Problem is, how can I also list the names in my query which have Null hours for the week? My Query is being put into a Report and I want to list all the employees, regardless of whether the worked for the week or not. E.g.,
I'd like to be able to do this in design view since I don't know SQL very well, but if I have to use SQL, that's fine too.
Thanks!
Rich
Code:
Mary
Joe
Sue
Brian
Beth
Code:
Brian 8
Sue 8
Brian 4
Joe 7
Sue 3
Brian 5
Code:
Brian 17
Sue 11
Joe 7
Code:
Brian 17
Sue 11
Joe 7
Mary 0
Beth 0
Thanks!
Rich