Hello:
What you then want to do is the "Unmatched" query. below is an example:
SELECT tblZtable1.EmployeeID, tblZtable1.LastName, tblZtable1.FirstName
FROM tblZtable1 LEFT JOIN tblZtable2 ON tblZtable1.EmployeeID = tblZtable2.EmployeeID
WHERE (((tblZtable2.EmployeeID) Is Null));
Regards
Mark