Hi all,
Thanks for having a look at this.
I have a spreadsheet with about 1000 hyperlinks, all of which I want to change the cell reference of. Each link has different text to display. I have found some code to change the screentip and was hoping that there's a way to rework it to change the cell reference in all hyperlinks to "A1"
Highlighting them all, clicking edit hyperlink and then OK just makes them all show the same table, where each hyperlink should show it's own unique table.
If anyone can help, that would be awesome.
Thanks in advance!
Thanks for having a look at this.
I have a spreadsheet with about 1000 hyperlinks, all of which I want to change the cell reference of. Each link has different text to display. I have found some code to change the screentip and was hoping that there's a way to rework it to change the cell reference in all hyperlinks to "A1"
Code:
Sub Change_ScreenTip()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Activate
For Each r In ActiveSheet.UsedRange
If r.Hyperlinks.Count > 0 Then
r.Hyperlinks(1).ScreenTip = " "
End If
Next
Next
End Sub
Highlighting them all, clicking edit hyperlink and then OK just makes them all show the same table, where each hyperlink should show it's own unique table.
If anyone can help, that would be awesome.
Thanks in advance!