I read all the possible solutions on the Internet, and each time I get different results.
I have two tables: Clients and Patrons. Both of them have the same structure: LastName, FirstName, Address, City, State and Zip. Clients have 108,000 records, while patrons have only 42,000 records. And some of these records are duplicated between them, since I do not have 150,000 clients.
I need one sequential list. The problem I am facing is that some of my clients are located at the same address, so I cannot just delete duplicate addresses, as this will delete the legitimate client. And I have several clients with very common names, say, Jane Doe, where there are several at different addresses, so I canβt just filter out duplicates of the last or first names.
I am using Microsoft Access 2010.
Simply converting unique values ββto YES does not help.
I looked at Microsoft help files and I got results from 2 to 168,000 and most of them in between.
How can I get one list without duplicates without the need for its alphabet and go line by line for 150,000 entries?
source share