I have a main table "tblEmp" with a list of all employees. I also have a table "tblReprints" with individual errors detailed by person. Not every employee will have errors. I would like to run a query to display all employees and their errors.
For example:
tblEmp contains Name1, Name2, Name3 and Name4
tblReprints contains 2 records (errors) for Name1 and 1 record (error) for Name2.
The query would display something like this:
Employee Errors
Name1 2
Name2 1
Name3 0
Name4 0
If an employee doesn't have any errors, the query would display 0