I have a long excel file and more than one column data depends on data validation in a other sheet which is parameters. After a while I need to edit some of these list. For example I won't use names from now on I will use ids instead of name. So; Andrea become 22 which is his id.
But I need to update whole list (more than 100k lines). When I update parameters, new values are applicable for new entries but as I said, I need to update all of it with existing entries.
This is how main page looks like
users | department | cost | city | ... |
---|---|---|---|---|
John | Logistics | $350 | Rome | ... |
Sarah | Engineering | $480 | Rome | ... |
Mark | Incoming | $110 | Venice | ... |
... | ... | ... | ... |
This is the parameters table and main page get data from here by data verification list property.
users | department |
---|---|
John | logistics |
Alex | incoming |
Suzan | logistics |
And this is the new parameters table. Instead of names, I want to use new ids.
users | department |
---|---|
22 | 13 |
13 | 8 |
7 | 13 |
But I want to refresh the old cells with new values. I want to change all logistics with 13, all Johns with 22 etc...
Since there are too many columns and too many entries in parameters, I don't want to use vlookup etc.
I'm looking for a really simple solution. Don't have any experience with vba or macros etc.