How to remove links

  • Thread starter Thread starter King
  • Start date Start date
Hi King

Manual : Right click on the link and choose remove Hyperlink

To make text from all your hyperlinks use a macro like this

Sub test()
ActiveSheet.Hyperlinks.Delete
End Sub

Alt-F11
Insert>Module from the menubar
paste the sub in there
Alt-Q to go back to Excel

If you do Alt-F8 you get a list of your macro's
Select "test" and press Run
 
Ron,

Judging by the difference in our replies, I would guess that
the OP's question was a little vague?? <g>

John
 
Back
Top