Forum Discussion
Alex Gilbey
Nov 15, 2018Copper Contributor
Lookup formula using part of string
Hi All, Apologies if my question has been asked before. I have tried searching and found similar queries but none exactly matching what I need to do and I don't have the knowledge to make the necess...
- Nov 15, 2018you can use wildcards in VLOOKUP like so:
=VLOOKUP(A2&"*",B2:B100,2,FALSE)
JKPieterse
Nov 15, 2018Silver Contributor
you can use wildcards in VLOOKUP like so:
=VLOOKUP(A2&"*",B2:B100,2,FALSE)
=VLOOKUP(A2&"*",B2:B100,2,FALSE)
- Alex GilbeyNov 15, 2018Copper Contributor
Thanks Jan, very useful