T ToBeFree71 May 25, 2010 #1 I would like to Remove ALL hyperlinks instead of one by one in Excel 2003
G Gord Dibben May 25, 2010 #2 Sub DeleteHyperlinks() Dim Cell As Range For Each Cell In Intersect(Selection, _ Selection.SpecialCells(xlConstants, xlTextValues)) With ActiveSheet .Hyperlinks.Delete End With Next Cell End Sub Gord Dibben MS Excel MVP
Sub DeleteHyperlinks() Dim Cell As Range For Each Cell In Intersect(Selection, _ Selection.SpecialCells(xlConstants, xlTextValues)) With ActiveSheet .Hyperlinks.Delete End With Next Cell End Sub Gord Dibben MS Excel MVP
D Dave Peterson May 25, 2010 #3 You don't need the loop. Sub DeleteHyperlinks() ActiveSheet.Hyperlinks.Delete End Sub This will get rid of the Insert|Hyperlink version.
You don't need the loop. Sub DeleteHyperlinks() ActiveSheet.Hyperlinks.Delete End Sub This will get rid of the Insert|Hyperlink version.