Excel vlookup help

前端 未结 2 549
死守一世寂寞
死守一世寂寞 2021-01-15 23:41

Using vlookup, when a match occurs, I want to display the value of column C from sheet 2 from the same row where the match occurred. The formula I came up with takes the val

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-16 00:33

    You need to manually get the index you're looking for, then get the value at that index:

    =INDEX(Sheet2!C:C, MATCH(Sheet1!A:A,Sheet2!A:A,FALSE))
    

提交回复
热议问题