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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top