Re: How do I find duplicates in Access 2002 without the install cd-rom
From: Duane Hookom (duanehookom_at_NO_SPAMhotmail.com)
Date: 12/07/04
- Next message: Michel Walsh: "Re: time tracking"
- Previous message: Brian: "Re: Query to get output from 2 other queries"
- In reply to: NYDCC: "How do I find duplicates in Access 2002 without the install cd-rom"
- Next in thread: NYDCC: "Re: How do I find duplicates in Access 2002 without the install cd"
- Reply: NYDCC: "Re: How do I find duplicates in Access 2002 without the install cd"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 7 Dec 2004 12:00:18 -0600
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;
-- Duane Hookom MS Access MVP "NYDCC" <NYDCC@discussions.microsoft.com> wrote in message news:E96D3B98-C46A-455B-9AFF-77D45D7B232F@microsoft.com... > Does anybody know how to find duplicate contacts in Access 2002 without the > feature installed, and without the cd-rom?
- Next message: Michel Walsh: "Re: time tracking"
- Previous message: Brian: "Re: Query to get output from 2 other queries"
- In reply to: NYDCC: "How do I find duplicates in Access 2002 without the install cd-rom"
- Next in thread: NYDCC: "Re: How do I find duplicates in Access 2002 without the install cd"
- Reply: NYDCC: "Re: How do I find duplicates in Access 2002 without the install cd"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|