Deactivate ALL hyperlinks-VBS?

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
 
D

Don Guillett

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

Sub HyperlinksOut()
ActiveSheet.Hyperlinks.Delete
End Sub
 
Top