从一个 table body 范围到另一个 table body 范围的 Vlookup

Vlook up from one table body range to another table body range

我有两个 table:

我的目标是从 tblCost1 获取成本并将其导入 tblCost2

我使用下面的公式,但我遗漏了一些东西,我得到了错误的数字。

=VLOOKUP([@Product],tblCost1,tblCost1[Cost],2)

请参阅下面的 table 结构。

试试这个

=VLOOKUP([@Product],tblCost1, 2, 0)

第三个参数是列号,第四个应该是零