我有这样的表:
我有BEDEN B,如下:
现在我想通过匹配log&代码
Sheet B Result2 = Sheet A result2
如何编写vlookup公式。 请帮我。
谢谢
I have a sheet A like this:
And I have Sheet B like this:
Now I want to get the Result2 from sheet B and fill Sheet A result2 column by matching log & code
How can I write the vlookup formula. Please help me.
Thank you
您可以使用sumifs非常简单地做到这一点,因为您正在尝试获得一个数字:
单元格A中的cell d2中的公式是:
=SUMIFS('Sheet B'!$C$2:$C$8;'Sheet B'!$A$2:$A$8;'Sheet A'!A2;'Sheet B'!$B$2:$B$8;'Sheet A'!B2)
另一个选项将使用数组公式(必须介绍 ctrl + enter + shift ):
=INDEX('Sheet B'!$C$2:$C$8;MATCH(A2&B2;'Sheet B'!$A$2:$A$8&'Sheet B'!$B$2:$B$8;0))
You can do this really easy with SUMIFS because you are trying to get a number:
Formula in cell D2 from Sheet A is:
Another option would be using an array formula (it must be introduced pressing CTRL+ENTER+SHIFT):
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您可以使用sumifs非常简单地做到这一点,因为您正在尝试获得一个数字:
单元格A中的cell d2中的公式是:
另一个选项将使用数组公式(必须介绍 ctrl + enter + shift ):
You can do this really easy with SUMIFS because you are trying to get a number:
Formula in cell D2 from Sheet A is:
Another option would be using an array formula (it must be introduced pressing CTRL+ENTER+SHIFT):