Excel 中基于多列的查找
A B C
1 PROD1 TYPE1 VAL1
2 PROD2 TYPE1 VAL2
3 PROD1 TYPE2 VAL3
4 PROD2 TYPE3 VAL2
在空单元格中,我想获取 C 列中 Prod Type= Prod2 和 type = type3 的值。
我将不胜感激任何形式的帮助。
A B C
1 PROD1 TYPE1 VAL1
2 PROD2 TYPE1 VAL2
3 PROD1 TYPE2 VAL3
4 PROD2 TYPE3 VAL2
In an empty cell I want to get the value in C column for the Prod Type= Prod2 and type = type3.
I will appreciate any kind of help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看如何使用 DGET Excel 函数。
设置
然后在 A2:C5 中提供数据
然后
=PROD2
(标准 1)最后,在 H3 中:
这应该为您提供值。
Have a look at using the DGET Excel function.
Set
Then your provided data in A2:C5
Then
=PROD2
(Criteria 1)=TYPE3
(Criteria 2)And lastly, in H3:
That should get the value for you.
这假设 C 列值实际上是数字而不是文本。
This assumes that column C values are actually numbers and not text.
针对输出列不包含数字的情况,对 Dick Kusleika 的解决方案进行了改进摘自
此处。
另请参阅此答案。
An improvement on the solution by Dick Kusleika for the case when the output column does not contain numbers is
Taken from here.
See also this answer.