在 Excel 中查找一列中的第 n^ 个条目,其中 n 是另一列中的整数

发布于 2024-10-16 04:07:00 字数 236 浏览 2 评论 0原文

我使用 match 查找第 1 列和第 2 列之间最佳匹配的行号。现在我想使用 match 中的该数字,它实际上只是一个整数,告诉我列选择中的哪个条目我需要使用, 来查找第 3 列中的值。

因此,如果 match 吐回 28,我如何查找 A11:A60 列中的第 28 个条目?

我可以在 Excel 中执行此操作吗? (这是我可以使用的全部)谢谢!永远不要使用Excel。

I used match to find a row number for the best match between columns 1 and 2. Now I would like to use that number from match, which is really just an integer telling me which entry in the column selection I need to use, to lookup the value in column 3.

So if match spits back 28, how do I lookup the 28th entry in column A11:A60?

Can I do this in excel? (it is all I am allowed to use) Thanks! Never use excel.

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

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

发布评论

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

评论(2

烟火散人牵绊 2024-10-23 04:07:00

尝试使用 INDEX() 函数。

我的第一个猜测是:

=INDEX(A11:A60; 28)

Try the INDEX() function.

My first guess would be something around:

=INDEX(A11:A60; 28)
深海夜未眠 2024-10-23 04:07:00

如果匹配将答案粘贴在单元格 A10 中,那么在单元格 A9 中您可以使用公式:

=ADDRESS(10+A10,1)

其中 10 表示第 10 行(A11 上方),而 1 表示 A 列

所以您应该看到:

$A$38

然后您可以使用间接来获取值来自该单元格:

=INDIRECT(A9)

这会给你你正在寻找的东西

If match sticks the answer in cell A10, then in cell A9 you could have the formula:

=ADDRESS(10+A10,1)

Where 10 means row 10 (above your A11), and the 1 means column A

So you should see:

$A$38

Then you can use indirect to get the value from that cell:

=INDIRECT(A9)

And that will give you what you're looking for

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