VLOOKUP with partial match

  • Thread starter Thread starter G.P.N.L. c.v.a.
  • Start date Start date
G

G.P.N.L. c.v.a.

How can I get a match with VLOOKUP("TBS";a1:c15;2)
if in the Table_array the data is "TBS XYZ" ?
 
Try this:

=VLOOKUP("TBS*";a1:c15;2;0)

The asterisk is a wildcard character, meaning any characters.

Hope this helps.

Pete
 
Back
Top