VBA to change Hyperlink screen text

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Code:
Option Explicit
 
Sub ChangeHyperlinks()
 
Dim LR As Long, cell As Range
 
On Error Resume Next
 
Application.ScreenUpdating = False
 
LR = Cells(Rows.Count, "F").End(xlUp).Row
 
For Each cell In ActiveSheet.Range("F2:F" & LR)
    cell.Hyperlinks.Add Range(cell.Address), Address:=cell.Value, TextToDisplay:="Link"
Next cell
 
Application.ScreenUpdating = True
 
End Sub

Amend F2 to the first cell your links are in. Ie F5 or F1.
This should do everything you need including making them clickable
 
Last edited:
Upvote 0
Cross posted https://stackoverflow.com/questions/53496983/change-screen-name-for-multiple-hyperlinks-with-vb#

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
The big bold text in post #1 is the link. I was aware and reviewed the other site first for solutions
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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