Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以(可能使用 VBA 宏)禁用 Excel 自动跟随电子表格中的超链接?
Excel 的默认设置是“点击关注,按住编辑”,这似乎无法更改并且非常烦人。我会对一个可以拦截任何“跟随链接”信号并忽略它们或转换为“编辑单元格”的宏感到非常满意,但我的 VBA 经验非常初级,因此非常感谢任何帮助。谢谢!
我能够找到的一些解决方案包括:
我宁愿不走那条路。
不确定答案是否像这样简单...我自己将其用作快速启动栏中的按钮...
Sub removehyperlink() Selection.Hyperlinks.Delete End Sub