提取同名的数据“ AAA”并在另一个表中获取相关的不同数据
我有一个主表,其中包含以下列:
名称 | 类型 | 角色 |
---|---|---|
Name1 | S1 | R1 |
Name2 | S2 | R2 |
Name3 | S1 | R3 |
Name4 | S3 | R2 |
Name5 | S1 | R5 |
要求是在表 2 中,我需要具有类型 S1 的所有名称。 表 2 中的输出应为:
名称 | 类型 | 角色 |
---|---|---|
Name1 | S1 | R1 |
Name3 | S1 | R3 |
Name5 | S1 | R5 |
请建议如何操作。我尝试过vlookup和index+match。它无法进行相似名称列搜索。 2. 需要知道如何根据主工作表中添加的任何名称自动填充工作表而不会出现错误。
我尝试过的事情是:
- 我将 solumn Type 移到左侧作为第 1 列。然后我使用了 vlookup("S1",Array size,2,FALSE) 它给了我正确的名字,因为它匹配。但是当我下拉单元格时,应用于每个数组值移位和输出的公式不正确。我附上 $ 作为示例:A3 -> A$3 保持表数组相同,但是当它与下一行的 S1 不匹配时,它给了我 NA 一些错误。
谢谢, sbx。
I have one master sheet where I have columns:
Name | Type | Role |
---|---|---|
Name1 | S1 | R1 |
Name2 | S2 | R2 |
Name3 | S1 | R3 |
Name4 | S3 | R2 |
Name5 | S1 | R5 |
The requirement is that in sheet 2, I need all the names which has type S1.
The output in sheet 2 should be:
Name | Type | Role |
---|---|---|
Name1 | S1 | R1 |
Name3 | S1 | R3 |
Name5 | S1 | R5 |
Please suggest how to do it. I have tried vlookup and index+match. it could not work out for similar name column search.
2. Need to know how to auto -populate the sheet without error based on any name added in master - sheet.
The things which I have tried are:
- I moved the solumn Type to the left as column 1. then I used vlookup("S1",Array size,2,FALSE)
It gave me the first name correct as it matched. but when I pull down the cell , the formulae applied with each array value shift and output was not correct. I attached $ as example: A3 -> A$3 to keep the table array same, but it gave me NA in some error when it did not match the S1 for the next row.
Thanks,
sbx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最简单的解决方案是使用带有数组的
if
语句,然后过滤
结果。类似于这个方程。数组为
$B$2:$B$6
和A2:A6
。感谢您提出问题
更新,这是 Pb 建议的并且效果很好。
I think the easiest solution is to use a
if
statement with arrays thenfilter
the results. Similar to this equation.The arrays are
$B$2:$B$6
andA2:A6
.Thanks for the question
Update this is suggested by P.b and works very well.
OP在评论中提到,
因此,对于使用 O365< 的用户来说,这是一种替代方案/strong>,目前在 Insiders Beta 频道
如果您不在上述频道 &也使用 O365,然后,双重
FILTER()
函数OP mentions on comment,
So here is one alternative for those who are using O365, presently on Insiders Beta Channel
And if you are not in above Channel & using O365 as well, then, Double
FILTER()
Function