Disable hyperlinks that already exist

  • Thread starter Thread starter Ken
  • Start date Start date
K

Ken

Anyway to disable hyperlinks that already exist in an excel document? I know
of the disable in autocorrect but this is when the document comes from
someone else who has made the hyperlinks active...
 
Are the hyperlinks created using the =HYPERLINK function?

If so, the following wil not work and you will have to remove them
individually.

Otherwise, run this macro.

Sub DelAllHyperlinks()
ActiveSheet.HyperLinks.Delete
End Sub


Gord Dibben MS Excel MVP
 
Back
Top