Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a column with links but would like to create a new column with
the urls they are point ting to for example A1=google but the hyperlink is www.google.com I would like B1=www.google.com A2=yahoo but the hyperlink is www.yahoo.com I would like B2=www.yahoo.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
for each hlnk in activesheet.hyperlinks
hlnk.parent.offset(0,1).Value = "'" & hlnk.Address Next -- regards, Tom Ogilvy "Shani" wrote: I have a column with links but would like to create a new column with the urls they are point ting to for example A1=google but the hyperlink is www.google.com I would like B1=www.google.com A2=yahoo but the hyperlink is www.yahoo.com I would like B2=www.yahoo.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can you provide a little mroe information please
|
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
sub Extracthypelinksaddress()
Dim hlnk as Hyperlink for each hlnk in activesheet.hyperlinks hlnk.parent.offset(0,1).Value = "'" & hlnk.Address Next End Sub the most I could add is to come to your site and run the macro. -- Regards, Tom Ogilvy "Shani" wrote: Can you provide a little mroe information please |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
extract hyperlink with worksheet | Excel Worksheet Functions | |||
How to extract the url in a hyperlink using a formula | Excel Worksheet Functions | |||
Extract a hyperlink from cell value | Excel Programming | |||
How can I extract hyperlink value | Excel Discussion (Misc queries) | |||
Extract Hyperlink | Excel Programming |