Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Leith,
Thanks thats just brilliant :) Cheers Darren Leith Ross wrote: Hello Darren, Here is a macro that will that will list the link address of all hyperlinks on the active worksheet. The hyperlink address is placed in the cell immediately to the right of the hyperlink. Code: -------------------- Sub ListLinkAddresses() Dim Addx, HypLnk With ActiveSheet For Each HypLnk In .Hyperlinks Addx = .Range(HypLnk.Range.Address).Offset(0, 1).Address .Range(Addx).Value = HypLnk.Address Next HypLnk End With End Sub -------------------- Sincerely, Leith Ross -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200512/1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
linking an icon to a changing adjacent hyperlink | Excel Discussion (Misc queries) | |||
hyperlink navigation path path wrong in Excel 2003 | Excel Discussion (Misc queries) | |||
How to ascertain path of file in adjacent directory hierarchy | Excel Programming | |||
How do I copy a hyperlink path to another cell? | Excel Programming | |||
How do I copy a hyperlink path to another cell? | Excel Programming |