I have this large excel spreadsheet around 10,000 lines and 5,000 unique ids. That I want to like do a search and replace that is based on a data library.
FROM:
TO:
I know this can be done using a fast search and replace on excel, but if the data has around 5,000 unique agent-ids, it can be a daunting task.
Any one have a bright suggestions?
Thanks in advance!
Here's some VBA which will find and replace in one sheet based on a list of values in another.
This is searching cells B2:I1000 in sheet1. The config sheet contains 2 columns, the values to look for in column A and if it finds them will replace them with whatever the value is in column B for that row.
I was able to make a vb-macro code to do exactly what I need. I may need to adjust some specific cells, but it works for now.