Excel:自动超链接到另一个单元格
我有两列,一列是自动生成的(B 列),另一列(D 列),其中自动生成的列很少有手动值。
B D
--------------------
1 Col1 Col2
2 12 14
3 13 16
4 14
5 15
6 16
--------------------
当我在其中输入新行值时,我想自动超链接 D 列。 例如条目 D2 应该是 =HYPERLINK("#B4", B4)
现在我可以用 INDEX & 计算 B4 MATCH,但我如何自动超链接它?也就是说,如果我在 D2 中输入 14,它应该会自动替换为 =HYPERLINK("#B4, B4)。
I have two columns, one automatically generated (Column B), the other(Column D) with few manual values from automated generated column .
B D
--------------------
1 Col1 Col2
2 12 14
3 13 16
4 14
5 15
6 16
--------------------
I want to automatically Hyperlink Column D, when i enter a new row value in it.
e.g. The entry D2 should be =HYPERLINK("#B4", B4)
Now i can calculate B4 with INDEX & MATCH, but how do i automatically hyperlink it? That is to say, if i enter 14 in D2, it should automatically get replaced by =HYPERLINK("#B4, B4).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用事件过程Worksheet_Change:请参阅此 ozgrid 上的文章 或Chip Pearson 网站上的这篇文章。
就像:
你只需要改变你想要构建的公式。
You have to use an event procedure Worksheet_Change: see this article on ozgrid or this one on Chip Pearson's website.
Something like:
You just have to change the formula you want to build.