I have a list of container numbers that from time to time are duplicated. I would like to create an update query that will update each duplicate record by appending each record with a sequential letter to the end of each container number
This is the original data
This is how it would look after updating the duplicate containers
The update letters would need to re-start on change of container ID and will need to update all duplicate containers that do not end with "C" as these indicate a case container.
Any hepl on how this could be done is appreciated
Thanks
RJL
This is the original data
Code:
Container ID
90122334455
90122334455
90122334455
89330000111
89330000111
89330000111
This is how it would look after updating the duplicate containers
Code:
Container ID
90122334455A
90122334455B
90122334455C
89330000111A
89330000111B
The update letters would need to re-start on change of container ID and will need to update all duplicate containers that do not end with "C" as these indicate a case container.
Any hepl on how this could be done is appreciated
Thanks
RJL