返回单元格或范围(电子表格)的名称/地址的函数是什么?

发布于 2024-08-02 13:39:02 字数 345 浏览 9 评论 0原文

我找不到返回引用单元格名称的函数。例如,=SOMETHING(A5) 将以字符串形式返回 A5

这样,我可以写 ="有关详细信息,请参阅 " &某事(F50) & “.” 位于单元格中,单元格将显示有关详细信息,请参阅 F50。,然后,当我移动 F50 单元格时,文本将显示也改变。

那么,那是什么东西?

如果它适用于 Google 电子表格,那就最好了,但如果您不熟悉 Google 电子表格,OpenOffice Calc 和 MS Excel 解决方案很可能也兼容。

I could not find the function that returns the name of the cell referenced. For example, =SOMETHING(A5) that will return A5 as string.

So that, I can write ="For more information, see " & SOMETHING(F50) & "." in a cell and the cell will read For more information, see F50., and then, when I move the F50 cell, the text will also change.

So, what is that SOMETHING?

If it works for Google Spreadsheet it's the best, but if you are not familiar with Google Spreadsheet, OpenOffice Calc and MS Excel solutions are most probably compatible too.

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

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

发布评论

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

评论(2

枉心 2024-08-09 13:39:02

在 Excel 中,您可以使用 ADDRESS 函数。

In Excel you can use the ADDRESS function.

吻安 2024-08-09 13:39:02

在 Excel 中,您还可以使用CELL函数。

="For more information, see " & CELL("address",F50) & "."

将返回

For more information, see $F$50.

另一种方法是根据 CELL 函数创建指向该位置的超链接。对于最终用户来说会更容易,但公式更复杂。

=HYPERLINK((MID(CELL("filename",F50),4,255)&"!"&CELL("address",F50)),"For more information click here.")

这将返回

For more information click here.

,当单击它时,将选择指定的单元格。

In Excel you can also use the CELL function.

="For more information, see " & CELL("address",F50) & "."

will return

For more information, see $F$50.

An alternate is to create a hyperlink to the location based on the CELL function. It will be easier for the end user, but the formula is more complex.

=HYPERLINK((MID(CELL("filename",F50),4,255)&"!"&CELL("address",F50)),"For more information click here.")

this will return

For more information click here.

and when it is clicked on, the cell specified will be selected.

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