Hyperlink Help

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi All

If I paste a hyperlink off a web page into a cell in a workbook, then move
the mouse over it a litte box pops up with text or numbers in it.

How can I get this text Etc, into the cell to the left of the pasted cell.

Thanks in Advance.

Dave
 
Saved from a previous post:

One way to extract those URL's from a hyperlink created via Insert|Hyperlink
is with a userdefinedfunction.

Here's one that may help:

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Activating hyperlinks 3
hyperlink to a cell: adjusting for changes? 4
Moving Hyperlinks 2
Copied hyperlinks 1
View Hyperlink in another cell 1
Excel Hyperlink 0
hidden Hyperlink 1
hyperlink troubles 1

Back
Top