G Guest Dec 7, 2004 #1 Does anybody know how to find duplicate contacts in Access 2002 without the feature installed, and without the cd-rom?
Does anybody know how to find duplicate contacts in Access 2002 without the feature installed, and without the cd-rom?
D Duane Hookom Dec 7, 2004 #2 Next time please provide more information about your table structure. Generically, create a query like: SELECT ContactName, Count(*) as NumOf FROM tblContacts GROUP BY ContactName HAVING Count(*) >1;
Next time please provide more information about your table structure. Generically, create a query like: SELECT ContactName, Count(*) as NumOf FROM tblContacts GROUP BY ContactName HAVING Count(*) >1;