Home > database >  vlookup for each item in comma-separated list
vlookup for each item in comma-separated list

Time:11-24

I have two columns of data — id's and data values. I can get vlookup to work if I want to return the correct fruit if I provide an id, but I need to also be able to account for cases where multiple values are provided as well.

Put another way, I need to be able to run my vlookup on each item in a comma-separated list in another cell.

id fruit input output
2835 apples 4792 pears
2232 bananas 2835 apples
3244 peaches 1199,3244,2835,4790 should be: oranges,peaches,etc…
4792 pears
1199 oranges

enter image description here

enter image description here

  • Related