Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Is there any way to copy the hyperlink destionation from a hyperlink field? I have a few hundred hyperlink cells and I have to list the hyperlink destinations. Thank you! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a User defined function that will retrieve the URL.
Saved from a previous post: Option Explicit Function GetURL(Rng As Range) As String Application.Volatile Set Rng = Rng(1) If Rng.Hyperlinks.Count = 0 Then GetURL = "" Else GetURL = Rng.Hyperlinks(1).Address End If End Function So if you had a hyperlink in A1, you could put =getURL(a1) in that adjacent cell. Be aware that if you change the hyperlink, then this formula cell won't change until your workbook calculates. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Short course: Open your workbook. Hit alt-f11 to get to the VBE (where macros/UDF's live) hit ctrl-R to view the project explorer Find your workbook. should look like: VBAProject (yourfilename.xls) right click on the project name Insert, then Module You should see the code window pop up on the right hand side Paste the code in there. Now go back to excel. Into a test cell and type: =getURL(a1) gcaramaliu wrote: Hi, Is there any way to copy the hyperlink destionation from a hyperlink field? I have a few hundred hyperlink cells and I have to list the hyperlink destinations. Thank you! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hyperlink Destination Positioning On Screen | Excel Worksheet Functions | |||
Hyperlink using a variable destination | Excel Worksheet Functions | |||
Formula: Add rows/lines to destination in Hyperlink | Excel Discussion (Misc queries) | |||
Change Hyperlink Destination Folder | Excel Discussion (Misc queries) | |||
jump to hyperlink, extract value at specific destination in file | Excel Worksheet Functions |