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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,063
Messages
6,122,934
Members
449,094
Latest member
teemeren

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