Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to Remove ALL hyperlinks instead of one by one in Excel 2003
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 On Tue, 25 May 2010 08:04:01 -0700, ToBeFree71 wrote: I would like to Remove ALL hyperlinks instead of one by one in Excel 2003 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You don't need the loop.
Sub DeleteHyperlinks() ActiveSheet.Hyperlinks.Delete End Sub This will get rid of the Insert|Hyperlink version. Gord Dibben wrote: 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 On Tue, 25 May 2010 08:04:01 -0700, ToBeFree71 wrote: I would like to Remove ALL hyperlinks instead of one by one in Excel 2003 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Emailing an Excel document with hyperlinks | Excel Discussion (Misc queries) | |||
Update 2000 Excel hyperlinks to 2003 hyperlinks | Excel Worksheet Functions | |||
Linking an Excel 2003 document copied to a Word 2003 document | Excel Discussion (Misc queries) | |||
How to remove multiple hyperlinks from a document | Excel Discussion (Misc queries) | |||
remove hyperlinks Excel 2003 | Excel Discussion (Misc queries) |