excel 使用 vlookup 使用另一列将两个表中的两列配对

excel pair two columns from two tables using another column using vlookup

我有3个table,table1有Seri​​al Number和ID,table2有ID和Product Name,我需要用Serial填写table3使用 VLOOKUP 编号和匹配的产品名称 enter image description here

我认为您可以使用嵌套的 Vlookup 来做到这一点。 一次查找 return 序列号的 ID,然后在第二次 Vlookup 中使用该 ID 来获取产品名称。

=VLOOKUP(VLOOKUP(H2,A2:B4,2,FALSE),D2:E4,2,FALSE)

您需要在第 3 个 table 中填写序列号才能正常工作。 我为您的 table 创建了一个副本,这样您就可以看到发生了什么。