vlookup a value in column B but return value in Column A

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

Guest

Hi!

I am wondering if there is any way we can vlookup a certain value in column
B but return value in Column A.

Thank you very much!

Ken
 
Hello Ken,

You can't do that with VLOOKUP but you can use an INDEX/MATCH type formula,
e.g. to lookup C1 in column B and return the corresponding value from column A


=INDEX(A:A,MATCH(C1,B:B,0))
 
Back
Top