将Excel纯文本链接转换为超链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将Excel纯文本链接转换为超链接相关的知识,希望对你有一定的参考价值。

Save the following code as a macro and then apply it to the fields you want to convert
  1. Public Sub Convert_To_Hyperlinks()
  2. Dim Cell As Range
  3. For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
  4. If Cell <> "" Then
  5. ActiveSheet.Hyperlinks.Add Cell, Cell.Value
  6. End If
  7. Next
  8. End Sub

以上是关于将Excel纯文本链接转换为超链接的主要内容,如果未能解决你的问题,请参考以下文章

为超链接设置屏幕提示

如何阻止whatsapp将字符串解释为超链接

如何将记录集中的文本框的值设置为超链接地址?

PHP 将URL转换为超链接

PHP 将URL转换为超链接

Python - 将 HTML 超链接转换为格式化的纯文本