Vlookup整行

时间:2012-12-04 07:07:02

标签: excel excel-2007 vlookup

我想使用工作簿中另一个工作表中的Vlookup搜索整行。目前我只能使用excel获取名称。有样本数据&正在寻找123

Sheet 1
     ID    Name     Rates
    ----  ------   -------
     123   Onions    25$
     125   Tomatoes   6$

   Sheet2
       VLOOKUP(A2,Sheet1!B3:D5,2)

给了我123,洋葱。我想123,洋葱, 25 $

1 个答案:

答案 0 :(得分:2)

<强> Sheet 1中

 ID    Name     Rates
----  ------   -------
 123   Onions    25$
 125   Tomatoes   6$

<强> Sheet 2中

 ID
----
 125

然后你可以将它用于单元格B1

=CONCATENATE(VLOOKUP(A1;Sheet1!A2:C5;2;0);", ";VLOOKUP(A1;Sheet1!A2:C5;3;0))