Excel should let you remove hyperlinks for any range or selection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The workaround (multiply range by "1") is rediculous and impacts cells in
range with other types of formating.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...0-d3f986bdcd24&dg=microsoft.public.excel.misc
 
You can use the following VBA code:

Sub AAA()
Dim HL As Hyperlink
For Each HL In ActiveSheet.Hyperlinks
HL.Delete
Next HL
End Sub

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Back
Top