Excel issue with Function VLOOKUP

后端 未结 3 1534
时光取名叫无心
时光取名叫无心 2020-12-12 04:45

I know this might not be the best place to ask a purely excel question, but. I have a table with the following headers: Number, Date, Name. In another file I need to link th

3条回答
  •  执笔经年
    2020-12-12 05:47

    I assume that B1 holds the name of the person. In that case, you need to adjust the range for the lookup table, so that it starts in the column with the name, i.e.

    =VLOOKUP(B1,[Workbook1]Sheet1!$C$1:$D$27,2,FALSE)
    

    EDITTED : Change the column to 2 to get the date

提交回复
热议问题