Viewing 2 posts - 16 through 17 (of 17 total)
Here is some code I have used in the past:
Update Names
Set FullName = RTRIM(FullName)
Set FullName = LTRIM(FullName)
Set FullName = REPLACE(FullName, ' ', '!')
Where FullName LIKE '% %'
Select FullName...
November 17, 2003 at 2:21 pm
#482311
I would use this little piece of code. First create a DupeId column in your main table. Then dump in your new data. Note: This will only work with exact...
November 17, 2003 at 1:19 pm
#482301