Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have the following issue, I load a bunch of web adresses from a text file into excel. Example: www.microsoft.com www.playboy.com etc. etc. When I do this the web adresse are displayed as text. How do I get them to perform/display as a hyperlink so clickin on the text will bring me directly to the site? The data to load is different every time. Looking forward to see any options to my problem. Ronald |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
select them then run this
Sub AddHperLinks() Dim cl As Range For Each cl In Selection.Cells ActiveSheet.HYperLinks.Add Anchor:=cl, Address:=CStr("http://" & cl.Value) Next cl End Sub cheers Simon "Ronald" wrote: Hi all, I have the following issue, I load a bunch of web adresses from a text file into excel. Example: www.microsoft.com www.playboy.com etc. etc. When I do this the web adresse are displayed as text. How do I get them to perform/display as a hyperlink so clickin on the text will bring me directly to the site? The data to load is different every time. Looking forward to see any options to my problem. Ronald |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Making a field value append a hyperlink | Excel Discussion (Misc queries) | |||
Normal Text in Formula | Excel Worksheet Functions | |||
HOW DO I CONVERT NORMAL TEXT INTO ALL CAPS? | Excel Worksheet Functions | |||
Word auto text (normal.dot) | Excel Discussion (Misc queries) | |||
Embedding a reference in a cell with normal text. | Excel Worksheet Functions |