过滤和匹配单元格以计算产品的重量(Excel,Google表格)

时间:2018-01-15 13:46:28

标签: excel google-sheets

Im new here and in the world of Excel. 我遇到了问题,甚至描述问题也有问题:D

所以这里是:

我在sheet2中有2张( sheet1&amp; sheet2 列A 有一个项目列表(item1,item2,item3等)。 B列有每个单位的称重列表(因此 item1 每单位2kg, item3 < / strong>每单位0.2kg ......等。

Sheet1有 columnA ,其中包含Sheet2所有产品的下拉列表和cloumnB中的单元格,其中包含已购买的单位数(手动输入)。 ColumnC 必须能够根据所选产品和单位计算重量。

因此,如果我从 sheet1 上的下拉列表中选择一个产品: item1 ,并在下一个单元格中指定我已经购买了10个我需要 columnC的单位更新至20公斤。

How I see the formula is that it compares the **sheet1** columnA with **sheet2** columnA finds the match and multiplies the units with the weight per unit from **sheet2** and updates the field in **sheet1** columnC.

请帮忙。

1 个答案:

答案 0 :(得分:0)

表1第C栏中的公式:

=B1*VLOOKUP(A1;sheet2!A1:B999;2)

额外信息:https://www.howtogeek.com/howto/13780/using-vlookup-in-excel/