Reputation: 3699
This seemingly simple vlookup is not working and not picking up the specified value of 1 in ColA:
=VLOOKUP(C1,A:B,0,FALSE)
Any ideas what is wrong?
Upvotes: 0
Views: 42
Reputation: 36780
Try Index(), Match()
combination like below.
=INDEX(A:A,MATCH(C1,B:B,0))
Upvotes: 2