Creating a web hyperlink in a cell

Hardware Man

New Member
Joined
Apr 10, 2013
Messages
40
Let's say that in sheet1 cell A5 I have the text version of a web address.

What I'd like to do is use VBA to place that information into sheet2 cell B7 and turn it into a clickable hyperlink. It would also be nice if the cell just displayed "Link" and the actual address was not visible.

I'm sure that this is easy for most of the gurus here, but I'm kinda stumped.
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hello,

Try this out

Code:
Sub Hyper()


With Worksheets("sheet1")
.Hyperlinks.Add _
Anchor:=Worksheets("sheet2").Range("B7"), _
Address:=Worksheets("sheet1").Range("A5").Value, _
TextToDisplay:="Link"
End With


End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,884
Messages
6,127,560
Members
449,385
Latest member
KMGLarson

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