January 23, 200322 yr I have an Excel file containing approx. 12,000 records that I imported to FMP. How can I filter out duplicate records? For example: The fields are serial number, product name, and sales order#. I want a count of each serial # only once, even though the serial # may exist several times with different sales order #'s. It seems like a simple task, but I'm stumped. TIA for any advice. Cheers! Johnny Z
January 23, 200322 yr What defines a unique record? Or how would you know that a given record is or is not a duplicate? Once you know this, then you can setup a script to loop through the records and compare them, deleting the duplicates.
January 24, 200322 yr Author All records should be unique once the list is filtered. Duplicte records are defined as those that share serial# and date. If the serial# re-occurs with another date, then that is a unique record. I will experiment with some looping scripts. Thanks for your idea!
January 31, 200322 yr Author I tried the self join relationshiip techinque and it worked! Now I need to fully understand why. It's much more efficient than a script. Thanks! Johnny Z
Create an account or sign in to comment