Duplicates in 1 field

LHood

New member
Local time
Today, 22:30
Joined
Nov 10, 2021
Messages
2
Hi,

I am trying to remove duplicates from 1 field, for example in the field i have named as Address Line 1 the first record is "1 sample road, 1sampleroad, 1 Sample Road." then the next record is "2sampleroad, 2 Sample Road" then third record "3 Sample Road" which is how i would like it to look.

So its not every record , Is there a way of removing duplicates from the field?

Any help would be appreicated :)
 
Some modification of this idea would work
 
If it is a small number of records, do it by hand. Doing this via programming will depend on the reliability of the faulty cases, and you have already show three cases that would become hard to program.

Your "1 Sample Road" case has two poorly formatted entries and one of them only differs from the "good" one by case, not spaces. In both cases, the LAST entry is apparently the good one, but it is not always 3rd. In one case it is 2nd. From a programming viewpoint, you need to be able to establish a rule before you can do anything with programming.

Also, the apparent delimiter is a comma. Will there ever be a case where a comma is a legitimate element of the address?
 
Or a version of this

As stated in the threads the trick is to make a user interface that make finding possible duplicates very easy. Coming up with a single function to find all cases and fix it is not doable.
 

Users who are viewing this thread

Back
Top Bottom