In Access 2003 After running the duplicate query finding all the duplicates
how would I go about deleting them leaving one record.
How do you want to choose WHICH record to delete and which to keep? Does it
matter?
If it doesn't, consider creating a new empty table with the same structure as
this one (copy and paste the table, choose "Design View Only"); create a
unique Index on the combination of fields which identify a duplicate; and run
an Append query to append data from your current table into the new one.
You'll get a warning message that "x records were not inserted due to key
violations" - those are the duplicates being lost forever.