将名称与发现的功能相关联

发布于 2025-02-04 09:46:34 字数 795 浏览 2 评论 0原文

我有一个具有ID的机构列表,但我的列表与此图像相同,但没有相同的顺序:

“在此处输入映像”

所以我没有相同的顺序,下一步是该机构有不同的领域,有些机构有其他地区没有。喜欢此列表:

“在此处输入映像说明”

我有这个公式= if(isnumber(cou $ 1,$ j2:$ o2,0)),“找到”,“找不到”)有助于我在该行中寻找该区域,但并非以相同的顺序给我带来错误,因此我想在该范围内寻找研究所的名称,并寻找该机构行中可用的区域: 这是错误的图像:

您可以在图像中看到发现而不是发现的不正确

< img src =“ https://i.sstatic.net/7tbqd.png” alt =“在此处输入图像说明”>

I have a list of institutions with ID's and I have the same list but not in the same order as this image:

enter image description here

So I don't have it in the same order the next step is that this institutions have different areas and some institutes have some others don't. Like this list:

enter image description here

I have this formula =IF(ISNUMBER(MATCH(C$1,$J2:$O2,0)),"Found","Not Found") that helps me to look for the area in that row but is not in the same order this gives me errors, so I would like to look for the institute name in the range and look for the areas available in that institution row:
Here is the image of the error:

You can see in the image that the founds and not founds are not correct

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

超可爱的懒熊 2025-02-11 09:46:34

可以使用辅助表来实现它,在该表中您首先对j2:q14使用

=SORT(J2:Q14,1,1)

您的范围进行排序,然后在单元格中使用以下内容c2

=IFERROR(IF(HLOOKUP(C$1,$J17:$Q$29,1,0)=C$1,"Fount",),"NOT")

将单元格向下拖动,然后填充所有其他细胞。

(当然,排序的表可以完全在另一张表中)

“在此处输入图像说明”

It can be achieved using a helper table where you first sort your J2:Q14 range using

=SORT(J2:Q14,1,1)

You then use the following in cell C2

=IFERROR(IF(HLOOKUP(C$1,$J17:$Q$29,1,0)=C$1,"Fount",),"NOT")

Drag the cell down and right to fill all other cells.

(Of course the sorted table can be in another sheet altogether)

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文