PC Review


Reply
Thread Tools Rate Thread

How to delete duplicate addresses in mailing list.

 
 
Steve Gibbs
Guest
Posts: n/a
 
      29th Dec 2008
I have a mailing list with approximately 90,000 records. The records were
created from registrations, so I have a registration number and name and
address information. Problem is one person may have registered more than
once so now is listed with 2 registration numbers. I also would like to send
only one mailing to a household and more than one person may be registered.
How can I best eliminate the duplicate addresses?
 
Reply With Quote
 
 
 
 
George Hepworth
Guest
Posts: n/a
 
      29th Dec 2008
1) First, make sure your records have a primary key defined. You'll need
this to identify the records to be kept and those to be dropped.
2) Create a query like this, where your table name replaces my "tblMembers":

"SELECT Max([tblMembers].[MemberID]) AS max_id, [tblMembers].[Address] ,
[tblMembers].[LastName], [tblMembers].[City]
FROM tblMembers
GROUP BY [tblMembers].[Address], [tblMembers].[LastName],
[tblMembers].[City];

Name this QryMaxID.

Replace the field names with those in your table which serve to uniquely
identify duplicates. I used address, last name and city because I wanted to
eliminate anyone at the same address with the same last name, even if the
two people there were, say, "John Smith" and "Mary Smith".

This query will return ONE record for each combination of address, last name
and city. In other words, it has the list of unique records you need.


You can use this to identify and eliminate other records with the same
address, last name and city from your member list.






"Steve Gibbs" <(E-Mail Removed)> wrote in message
news:6BE8C96C-1E31-44B2-9D45-(E-Mail Removed)...
>I have a mailing list with approximately 90,000 records. The records were
> created from registrations, so I have a registration number and name and
> address information. Problem is one person may have registered more than
> once so now is listed with 2 registration numbers. I also would like to
> send
> only one mailing to a household and more than one person may be
> registered.
> How can I best eliminate the duplicate addresses?



 
Reply With Quote
 
 
 
 
John W. Vinson
Guest
Posts: n/a
 
      29th Dec 2008
On Sun, 28 Dec 2008 18:06:00 -0800, Steve Gibbs
<(E-Mail Removed)> wrote:

>I have a mailing list with approximately 90,000 records. The records were
>created from registrations, so I have a registration number and name and
>address information. Problem is one person may have registered more than
>once so now is listed with 2 registration numbers. I also would like to send
>only one mailing to a household and more than one person may be registered.
>How can I best eliminate the duplicate addresses?


With considerable difficulty, I fear. There are commercial "list cleaning"
services, and they're expensive for good reason!

Are

Fred Brown, 123 3rd St., Podunk, OH
Fred Brown, 123 3rd St., Podunk, OH

the same? Nope, they're father and son and both want to be on the list; Fred
Jr. lives in the separate entrance apartment in back.

How about

Sara Jones, 321 5th St., Anywhere IA
Sarah Jones, 321 Fifth St., Anywhere City, IA

No computer program will think so.

Similarly, how about Bill Roberts and William Roberts? Same? Different? Hard
to tell.

You'll need a USB interface - Using Someone's Brain. A "Find Duplicates" query
will get you started and eliminate the exact dups (including Fred Brown Jr.
unfortunately), but then you'll need to manually go through lists sorted every
which way to trim out the dups.
--

John W. Vinson [MVP]
 
Reply With Quote
 
a a r o n . k e m p f @ g m a i l . c o m
Guest
Posts: n/a
 
      29th Dec 2008
you can actually use the SOUNDEX function in SQL Server to sweep a lot
of inconsistencies like this under the carpet



On Dec 28, 7:35*pm, John W. Vinson
<jvinson@STOP_SPAM.WysardOfInfo.com> wrote:
> On Sun, 28 Dec 2008 18:06:00 -0800, Steve Gibbs
>
> <SteveGi...@discussions.microsoft.com> wrote:
> >I have a mailing list with approximately 90,000 records. *The records were
> >created from registrations, so I have a registration number and name and
> >address information. *Problem is one person may have registered more than
> >once so now is listed with 2 registration numbers. *I also would like to send
> >only one mailing to a household and more than one person may be registered. *
> >How can I best eliminate the duplicate addresses?

>
> With considerable difficulty, I fear. There are commercial "list cleaning"
> services, and they're expensive for good reason!
>
> Are
>
> Fred Brown, 123 3rd St., Podunk, OH
> Fred Brown, 123 3rd St., Podunk, OH
>
> the same? Nope, they're father and son and both want to be on the list; Fred
> Jr. lives in the separate entrance apartment in back.
>
> How about
>
> Sara Jones, 321 5th St., Anywhere IA
> Sarah Jones, 321 Fifth St., Anywhere City, IA
>
> No computer program will think so.
>
> Similarly, how about Bill Roberts and William Roberts? Same? Different? Hard
> to tell.
>
> You'll need a USB interface - Using Someone's Brain. A "Find Duplicates" query
> will get you started and eliminate the exact dups (including Fred Brown Jr.
> unfortunately), but then you'll need to manually go through lists sorted every
> which way to trim out the dups.
> --
>
> * * * * * * *John W. Vinson [MVP]


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do you delete duplicate addresses, but keep duplicate names? =?Utf-8?B?U2hlbGx5?= Microsoft Excel Misc 1 28th Aug 2006 10:36 PM
Delete USA in contacts as mailing addresses =?Utf-8?B?RmlubnNicmlkZQ==?= Microsoft Outlook Contacts 12 13th May 2006 09:43 PM
how do I create a list of mailing addresses, add new addresses, a =?Utf-8?B?TUJUcmVl?= Microsoft Access Getting Started 2 28th Jun 2005 07:17 PM
Mailing Labels - Duplicate Addresses =?Utf-8?B?QmVlSmF5?= Microsoft Access Reports 1 17th Jun 2005 01:49 AM
how do i convert MS Word mailing labels into an Excel mailing lis. =?Utf-8?B?dW5yaHlsbA==?= Microsoft Excel Misc 1 4th Feb 2005 01:19 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:22 AM.