Question

I was wondering if it was possible to use separated columns for my table_array value in Vlookup. For instance: I have a list of names in column A and a list of results in column C. In column D I have the formula: =VLOOKUP(B1,table_array,2) where I want the table array to contain columns A & C and return the value of Column C. Any help would be appreciated, thanks.

Was it helpful?

Solution

You could try this:

=VLOOKUP(B1, A1:C6, 3, FALSE)

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top