-1

Trying to do a VLookup with multiple values separated by comma. I have attached a picture of the sample i was trying to do (it shows the formula that i have at the top, along with the the reference table)

enter image description here

Scott Craner
  • 137,650
  • 9
  • 45
  • 77

1 Answers1

0

Your error is in the column you are first looking at. VLOOKUP works from left to right. You are starting in column F when your search is for data in column G.

This will return value, but not the information in column F.

=VLOOKUP("*" & B2 & "*", G1:G2,1,FALSE)

EDIT: As per comments, you can flip the columns to make your original formula work.

Mech
  • 3,852
  • 1
  • 13
  • 25