Hello,
I need help to modify a query in MS Access 2010 - I need to find duplicates in [FIELD NAME] where they start with the same 5 letters. I created a regular "find duplicates query" but then I cannot figure out how to modify to make it locate ALL the entries that START with the same 5 characters.
I need help to modify a query in MS Access 2010 - I need to find duplicates in [FIELD NAME] where they start with the same 5 letters. I created a regular "find duplicates query" but then I cannot figure out how to modify to make it locate ALL the entries that START with the same 5 characters.
Code:
In (SELECT [Field Name] FROM [TABLE] As Tmp GROUP BY [Field Name] HAVING Count(*)>1 )
Comment