C Crilen007 Uhm, Title... *shrug* Local time Today, 12:43 Joined Jun 13, 2003 Messages 531 Oct 22, 2003 #1 I have a table i imported from an ODBC There are a few dupes in the main ID column, however there are 15k entries, any easy way to pick these out? Thank you
I have a table i imported from an ODBC There are a few dupes in the main ID column, however there are 15k entries, any easy way to pick these out? Thank you
GumbyD Accessosaurus Local time Today, 20:43 Joined Aug 21, 2003 Messages 283 Oct 22, 2003 #2 Create a grouping query and bring in the ID field twice. In the first column "GroupBy" the ID field, In the second Column "Count" the ID field. In the criteria under the Counted ID's put >1 that will show you all the ID that are in more than once. GumbyD
Create a grouping query and bring in the ID field twice. In the first column "GroupBy" the ID field, In the second Column "Count" the ID field. In the criteria under the Counted ID's put >1 that will show you all the ID that are in more than once. GumbyD
C Crilen007 Uhm, Title... *shrug* Local time Today, 12:43 Joined Jun 13, 2003 Messages 531 Oct 22, 2003 #3 Thank you lots =D