Deactivate ALL hyperlinks-VBS?

  • Thread starter Thread starter Fanden
  • Start date Start date
F

Fanden

I have a workbook in Excel 2K with 1000s of cut/pasted hyperlinks.
want to deactivate them all to reduce the file size.

FAQs says to use a VBS Macro but I dont have a clue how to write suc
code and have tried to open the macro and fiddle w/it...I managed t
LOCK my file...but have resaved it and can edit it now, so

Any suggestions how to write/execute a macro to turn all hyperlink
off...?

Fande
 
copy paste this to a module in your workbook>then alt f8>this
workbook>double click.

Sub HyperlinksOut()
ActiveSheet.Hyperlinks.Delete
End Sub
 

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