> Does that answer your question?
Partially. It tells me how you are getting the duplicates. But, I still
don't know if the *entire* record (all fields considered) is a duplicate. If
the data is different for some field(s) in the records with the same e-mail
address, then you've got a different problem versus simply having identical
records throughout.
Oh, and let me revise my past answer. Rather than a Make Table query, it
might be better to use a Group By query as the source of data for an Append
query. That way, your table definition can remain exactly as you like. For
example, a standard Make Table query does not allow one to create a primary
key. However, you could run an append query to append records from one to
another.
Tom Wickerath
Microsoft Access MVP
http://www.access.qbuilt.com/html/ex...tributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________
"SinCity" wrote:
> Hey Tom,
>
> Great question! Here is a sample of the process that takes place which
> should
> answer your question...
>
> First I have a table containing 1000 records
> Someone gives me another table of 1000 records which will probably contain
> duplicates. It might only contain 2 duplicates or it might contain 800 or
> more. It is different each time.
> My ultimate goal is to get them both in a single table without there being
> duplicates (we can use the Email field as a duplicate reference).
>
> Does that answer your question?