Vlookup beginning with 3, 4 or 5 specific values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to select values in the second column of a table based on the values
in the first column. Voolkup requires an exact match. My Lookup table is as
follows:

Lab1 35 (I need to match all records that begin with Lab1 and post the
value 35.

Thanks
Sam
 
=INDEX(K1:K13,MATCH(LEFT(G1,4),LEFT(J1:J13,4),0))

G1 is the value to check, J1:J13 is the lookup table key column, K1:K13 is
the lookup table results column.

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top