G Guest Aug 16, 2005 #1 I am using an excel spreadsheet as a database and i need to remove all the hyperlinks from all fields
I am using an excel spreadsheet as a database and i need to remove all the hyperlinks from all fields
G Guest Aug 16, 2005 #2 there is some excellent help for removing hyperlinks in http://sniptools.com/tipstricks/deleting-all-hyperlinks-from-a-microsoft-office-document Sub RemoveHyperLinksGLobally() Dim i As Integer For i = ActiveSheet.Hyperlinks.Count To 1 Step -1 ActiveSheet.Hyperlinks(i).Delete Next i End Sub
there is some excellent help for removing hyperlinks in http://sniptools.com/tipstricks/deleting-all-hyperlinks-from-a-microsoft-office-document Sub RemoveHyperLinksGLobally() Dim i As Integer For i = ActiveSheet.Hyperlinks.Count To 1 Step -1 ActiveSheet.Hyperlinks(i).Delete Next i End Sub