문제

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.

도움이 되었습니까?

해결책

You could try this:

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

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top