Mass rename hyperlinks

MrTinkertrain

Board Regular
Joined
Feb 7, 2007
Messages
66
Office Version
  1. 365
  2. 2021
Hello all,

In my document I have a list of 4000+ items.
In col G there are hyperlinks to an image of that particular item on my harddrive
The syntax of the hyperlinks is now as follows :

"G:\Fminer\7935.jpg"
"G:\Fminer\7936.jpg"
"G:\Fminer\7937.jpg"
etc

I would like to achieve that my hyperlinks stay intact, but that for each and every hyperlink the text "IMAGE" is displayed.

How can I achieve that ?

Many thanks in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Code:
Sub Change_Hyperlinks()
    
    Dim link As Hyperlink
    
    For Each link In ActiveSheet.Hyperlinks
        If link.Range.Column = 7 Then       'Column G
            link.TextToDisplay = "IMAGE"
        End If
    Next
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,712
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top