将Excel纯文本链接转换为超链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将Excel纯文本链接转换为超链接相关的知识,希望对你有一定的参考价值。
Save the following code as a macro and then apply it to the fields you want to convert
Public Sub Convert_To_Hyperlinks() Dim Cell As Range For Each Cell In Intersect(Selection, ActiveSheet.UsedRange) If Cell <> "" Then ActiveSheet.Hyperlinks.Add Cell, Cell.Value End If Next End Sub
以上是关于将Excel纯文本链接转换为超链接的主要内容,如果未能解决你的问题,请参考以下文章