How would I use a Vlookup with multiple tildes in the text string? It would look something like this:
SWBC ~ 7797_Dodge_Challenger ~ Video ~ New
What would the VLookup formula be?
How would I use a Vlookup with multiple tildes in the text string? It would look something like this:
SWBC ~ 7797_Dodge_Challenger ~ Video ~ New
What would the VLookup formula be?
With a table like this where the value you want to search for (D3) has tilde characters, you can use =VLOOKUP(SUBSTITUTE(D3,"~","~~"),A:B,2,FALSE) to force excel to search for literal ~ characters:
The output from the vlookup formula is orange
See Working with "~" in excel for more information