VBA: Copy Hyperlink without the text from another worksheet

Kristina96

New Member
Joined
Sep 30, 2019
Messages
33
Hello,

I am trying to copy a hyperlink from cell A2 from Worksheet 2 to cell B3 of worksheet 1. The text in both cells should remain unchanged.
Any help would be very much appreciated.

Thank you in advance
Kristina
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
There may be more elegant solutions to this and this is VERY SPECIFIC to your request above (i.e. cells and worksheets) but here goes

VBA Code:
Sub CopyURL()
    Dim ws1 As Worksheet, ws2 As Worksheet
    Dim urlStr As String, tmpVal As String
    
    Set ws1 = ThisWorkbook.Worksheets("Sheet1")
    Set ws2 = ThisWorkbook.Worksheets("Sheet2")
    
    urlStr = ws1.Range("A2").Hyperlinks(1).Address
    
    With ws2
        .Activate
        .Range("B3").Select
        tmpVal = .Range("B3").Value
        Selection.Hyperlinks.Delete
        ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:=urlStr, TextToDisplay:=tmpVal
    End With
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,757
Messages
6,126,695
Members
449,331
Latest member
smckenzie2016

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