如图片,,为什么要双击才能自动加上链接。数据有500条我要点500下,有什么办法让它一下就加上不。????
http://wenwen.soso.com/z/q165993423.htm
这是批量取消超链接,你改一点应该可以的。
http://www.45it.com/excel/201112/27337.htm
500行,手动一下还是可以接受的。
可以创建一个宏, 然后选中有链接的列, 运行宏
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
格式刷试试