I have thousands of records that have User IDs in them. I need to find a way to delete these User IDs, as the data is being sent externally. The issues that I'm encountering are:
- The text is not static. It always starts with UID, but the last 4 characters can be alpha-numeric variables.
- The text can be found in any position of a cell.
- I will only have a 4 hour window to pull data from various locations, consolidate and format it.
I've looked through this site, and a couple of other places, but have been unable to find a solution. This looked promising from Google, but I can't seem to get it to fit my needs:
Any assistance is appreciated!
- The text is not static. It always starts with UID, but the last 4 characters can be alpha-numeric variables.
- The text can be found in any position of a cell.
- I will only have a 4 hour window to pull data from various locations, consolidate and format it.
I've looked through this site, and a couple of other places, but have been unable to find a solution. This looked promising from Google, but I can't seem to get it to fit my needs:
Code:
=REPLACE(M14,SEARCH("UID",M14)+7,0,"")
Any assistance is appreciated!