yes there is a 'Find Duplicates Query'.
It doesn't automaticly eliminate the duplicate - which I think you are
looking for....but it might be something for you to consider to at least
identify them upfront.
Click Queries
In the Objects bar displa the Queries List, and then click 'New'
Click the 'Find Duplicates Query Wizard'....and go from there....
yeah sure, and i could probably use that to remove all duplicates but i want
to remove all but one.
Perhaps i'm approaching this from the wrong side. what if i had a record per
address with multiple names under each. is there a way to then go backwards
from there to get individual names with addresses in seperate entries in a
query?
could i somehow use a subform maybe.
i'm a bit over my head here and don't know if im digging my way out, or
further in :S
> yes there is a 'Find Duplicates Query'.
>
[quoted text clipped - 26 lines]
> > > helpful...and for the query for labels it was of course very simple to
> > > require only "1" be returned....
NetworkTrade - 29 Apr 2006 14:54 GMT
your thinking is correct in terms of normalized db theory.
if there were lots of duplicates ; then in normal db organization, one
never re-enters the same data twice.
so you would enter full address once - but also assign a unique ID# to it.
then you would have a second table that would be made up of nothing but ID#s
(that points to the other table's full address) and names.
however; if duplicates is more the exception than the rule....then you
really might consider my first advice - rather than going down this road.
Adding simply another column now and populating it with a 1 or 2
(occasionally maybe a 3) is pretty simple and makes for a very simple query
method too....
as a db purist - it is not the perfect solution but in terms of pragmatics -
it is feasible unless you existing db already has a great amount of
records....

Signature
NTC
> yeah sure, and i could probably use that to remove all duplicates but i want
> to remove all but one.
[quoted text clipped - 37 lines]
> > > > helpful...and for the query for labels it was of course very simple to
> > > > require only "1" be returned....