Pergunta

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.

Foi útil?

Solução

You could try this:

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

enter image description here

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top