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

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.

John_w

MrExcel MVP
Joined
Oct 15, 2007
Messages
7,897
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,195,920
Messages
6,012,310
Members
441,690
Latest member
CyberWrek

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
Top