When I use the "Find Duplicates" query wizard, the results are grouped and there is a number given as the COUNT of the number of duplicates. I would like to see all of the duplicate records so that I can pick which ones to delete.
Is it possible to change the wizard to that it returns all the records (somewhere in preferences or tools or something)?
If not, can anyone offer suggestions on how to get them all displayed by modifying the design of the query after the wizard builds it?
Here's my SQL if that helps:
SELECT First(tblInviteeList.ApplID) AS [ApplID Field], First(tblInviteeList.InviteeList) AS [InviteeList Field], Count(tblInviteeList.ApplID) AS NumberOfDups
FROM tblInviteeList
GROUP BY tblInviteeList.ApplID, tblInviteeList.InviteeList
HAVING (((Count(tblInviteeList.ApplID))>1) AND ((Count(tblInviteeList.InviteeList))>1));
Is it possible to change the wizard to that it returns all the records (somewhere in preferences or tools or something)?
If not, can anyone offer suggestions on how to get them all displayed by modifying the design of the query after the wizard builds it?
Here's my SQL if that helps:
SELECT First(tblInviteeList.ApplID) AS [ApplID Field], First(tblInviteeList.InviteeList) AS [InviteeList Field], Count(tblInviteeList.ApplID) AS NumberOfDups
FROM tblInviteeList
GROUP BY tblInviteeList.ApplID, tblInviteeList.InviteeList
HAVING (((Count(tblInviteeList.ApplID))>1) AND ((Count(tblInviteeList.InviteeList))>1));