Identical (Duplicate) Records

George Too

Registered User.
Local time
Today, 18:00
Joined
Aug 12, 2002
Messages
198
Hi,

My table has big chance of getting identical-duplicated records thru an import method where the only difference betweenn the records would be the autonumber field.

How can I filter out these records at the time of import if they already exist in the table? or How can I remove them once the have been entered into the table?

Thank you,
 
Set the main fields (fields you do not want duplicated) in the table with a primary key and append the importd data. The duplicate records will not be allowed to be added to the table. You will need to set the warnings to false to not show the error message stating that all records could not be added.

HTH
 
I can't do it this way because data in my table may repeat "legaly" in other records' fields.

If you care to take a look at the attached jpg of my table, you will notice that records ID# 4851 & 4852 are almost identical 'till we get to the "defect" field; then record 4853 is similar to 4852 in the "defect" field but differes in others.

My point is that I don't want to append to my table records that are identical field-by-field.

Like I said, the primary key method would not work in this case 'cause would require me to set every single field as a primary key and then trigger errors when ever data duplicates legaly.

What do you think? :confused:
 

Attachments

  • data.jpg
    data.jpg
    75.1 KB · Views: 171

Users who are viewing this thread

Back
Top Bottom