将工作表1中的2列与工作表2中的列匹配,并返回工作表1的列3的值

时间:2019-09-18 08:50:55

标签: excel

我有2张纸。工作表1包含第1列,第2列,第3列。

类似地,工作表2具有col 1,col 2,col3。我希望以这种方式匹配产生的输出:

if ((col 1(of sheet 1) == col 1 (of sheet 2)) && (col 2(of sheet 1) == col 2 (of sheet 2))),

then col 3(of sheet 1) = col 3 (of sheet 2)

(我希望我已经把问题弄清楚了。)

2 个答案:

答案 0 :(得分:0)

欢迎来到SO-如果您想知道为什么对您的问题持否定票,那是因为人们希望您展示自己尝试过的内容,而不仅仅是要求其他人解决问题。下次尝试显示到目前为止您已经尝试过的内容。

您的问题的解决方案:

=INDEX(Sheet2!$A$1:$C$21,MATCH(1,(Sheet2!$A$1:$A$21=Sheet1!A1)*(Sheet2!$B$1:$B$21=Sheet1!B1),0),3)
  1. 输入Sheet1的C1

  2. 根据您的要求调整范围

  3. 这是一个数组公式,因此输入ctrl + shift + enter

答案 1 :(得分:0)

您可以使用:

=IF(AND(A1=Sheet1!A1,Sheet2!B1=Sheet1!B1),Sheet1!C1,"No Match")

Sheet1

enter image description here

Sheet2

enter image description here