2 Column VLOOKUP search

  • Thread starter Thread starter Guest
  • Start date Start date
Hi
one way:
- create a helper column in your lookup range
- concatenate both columns (e.g. =B1 & C1)
- copy this formula down

use this helper column to compare your lookup value
 
Another way:

=INDEX($L1:$L999,MATCH(W1&CHAR(1)&X1,$A$1:$A$999&CHAR(1)&$B1:$B$999,0))

This matched W1&X1 with A1&B1 through A999&B999.
and returned the value in column L.
 
and forgot to add...

This is an array formula. Hit ctrl-shift-enter instead of enter. If you do it
correctly, excel will wrap curly brackets {} around your formula. (don't type
them yourself.)
 

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

Similar Threads

vlookup challenge with hyphen data placement 2
vlookup with numbers 10
Excel IF statement with vlookup 2
Lookup or VLookup or something else?? 2
VLOOKUPS 4
using vlookup for multiple files 6
Match + VLOOKUP 1
Multiple V-Lookup 2

Back
Top