Disable hyperlinks that already exist

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...
 
G

Gord Dibben

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
 
Top