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.
有没有办法更改文本以显示工作表中的所有超链接?
我想要做的就是运行一个宏来将现有的文本修剪为仅显示 5 个字符?在mo,我要显示的文本是非常大的文本字符串,例如“21253.bla bla bla.wla wla wla.dah dah dah.jpg”,我只想显示21253
这甚至可能吗?问候雪
遍历工作表上的链接并使用左函数修剪要显示的文本。下面的例子
Dim hl As Hyperlink For Each hl In ActiveSheet.Hyperlinks hl.TextToDisplay = Left(hl.TextToDisplay, 5) Next