在Google表中查找基于行和列输入的值

发布于 2025-01-20 13:23:26 字数 282 浏览 0 评论 0 原文

我有一个非常大的相关矩阵,很难导航。 我想制作两个下拉菜单来选择两个项目(X 和 Y),并需要 google 表格中的公式来输出相应的相关性。 我知道通过输入行号和列号来执行此操作的方法,如所述 此处 但我想输入行和列中的值,而不是它们的数字。

我将不胜感激的帮助。

谢谢

I have a very big correlation matrix that is very hard to navigate.
I want to make two dropdown menus to select two items (X and Y) and need a formula in google sheets to output the corresponding correlation.
I am aware of the method of doing this by putting the row and column number, as described here but I want to put in the values in the row and column, not their number.

I would appreciate the help.

thank you

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

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

发布评论

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

评论(1

你的心境我的脸 2025-01-27 13:23:26

您只需要将index()与两个匹配()公式一起使用。

  • The first MATCH() gets the row number for the label you selected
  • The second MATCH() gets the column number for the second label

For example, if I have my drop-downs in B1 and B2 and the data in a Data!床单:

=INDEX(Data!A1:ZZ, MATCH(B2,Data!A:A,false), MATCH(B1,Data!1:1,false))

You just need to use INDEX() with two MATCH() formulas.

  • The first MATCH() gets the row number for the label you selected
  • The second MATCH() gets the column number for the second label

For example, if I have my drop-downs in B1 and B2 and the data in a Data! sheet:

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