I'm running an online store, and my dropshipper gives me our product list in a format where most of the needed information is found in the item number.
Example: 1AALIPGSPH07800
Category: 1A
Manufacturer Code: ALI
Etc.
I easily built a formula to isolate the categoryID and manufacturer ID into their own columns. I then used a formula to replace the categoryID into the format needed for the online store,
Example: =IF(AE2="1A","Skate/Essentials/Hardware","")&IF(AE2="1B","Skate/Essentials/Bearings","")& etc etc.
There's only about 40 categories, so no issue there.
The issue I'm having is applying the same method to replace the manufacturer ID with the full manufacturer name. There's over 650 manufacturers, which puts that formula at about 17k characters, well over Excel's limits. If the supplied item list didn't change constantly, I would just do this manually, but with 13k items changing every other week, that's just not an option. Any idea of another way to do this?
Bookmarks