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.
シート内のすべてのハイパーリンクを表示するようにテキストを変更する方法はありますか?
私がやりたいのは、マクロを実行して既存の TEXT to Display を 5 chs のみにトリミングすることだけですか? 今のところ、表示するテキストは「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