Okay! Here's the sql for testing for Duplicates from a DB I have, you can adapt.
SELECT tblEmployees.LastName, tblEmployees.FirstName, tblEmployees.EmployeeID, tblEmployees.HomePhone, tblEmployees.WorkPhone
FROM tblEmployees
WHERE (((tblEmployees.LastName) In (SELECT [LastName] FROM...