Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Need macro help to edit hyperlinks


Please help. I have a workbook with columns of email hyperlinks that
imported from another program.

When I run following macro: My cells show what is in the "Text t
display field". I need to see the email address.

I have spent many hours searching the web for a macro to do this but
cannot find one. And I do not know how to do it my self.

Thanks,

Sub RemoveHyperlinks()

'Remove all hyperlinks from the active sheet
ActiveSheet.Hyperlinks.Delete

End Su

--
Tom
-----------------------------------------------------------------------
Tomj's Profile: http://www.excelforum.com/member.php...fo&userid=2954
View this thread: http://www.excelforum.com/showthread.php?threadid=49245

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Need macro help to edit hyperlinks

You can use a User defined function to retrieve the link.

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)

Tomj wrote:

Please help. I have a workbook with columns of email hyperlinks that I
imported from another program.

When I run following macro: My cells show what is in the "Text to
display field". I need to see the email address.

I have spent many hours searching the web for a macro to do this but I
cannot find one. And I do not know how to do it my self.

Thanks,

Sub RemoveHyperlinks()

'Remove all hyperlinks from the active sheet
ActiveSheet.Hyperlinks.Delete

End Sub

--
Tomj
------------------------------------------------------------------------
Tomj's Profile: http://www.excelforum.com/member.php...o&userid=29544
View this thread: http://www.excelforum.com/showthread...hreadid=492452


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Need macro help to edit hyperlinks


Hello Tomj,

Place this code in a VBA module and you can then call it from code o
from the Macros list (ALT + F8). This will change the hyperlink to sho
the web address. The link will remain intact so you can click and go t
the site.


Code
-------------------
Sub ShowWebAddresses()

Dim HypLnk

For Each HypLnk In ActiveSheet.Hyperlinks
HypLnk.TextToDisplay = HypLnk.Address
Next HypLnk

End Sub

-------------------


Sincerely,
Leith Ros

--
Leith Ros
-----------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...fo&userid=1846
View this thread: http://www.excelforum.com/showthread.php?threadid=49245

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Need macro help to edit hyperlinks


Leith,

Thank you so much. It worked great.

Thank you to Dave.

Tom


--
Tomj
------------------------------------------------------------------------
Tomj's Profile: http://www.excelforum.com/member.php...o&userid=29544
View this thread: http://www.excelforum.com/showthread...hreadid=492452

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't edit hyperlinks galimi Excel Discussion (Misc queries) 3 January 19th 07 08:24 PM
Can't edit hyperlinks scott Excel Discussion (Misc queries) 0 January 19th 07 08:15 PM
Edit Hyperlinks SLKoelker Excel Discussion (Misc queries) 5 December 7th 06 01:28 PM
Edit hyperlinks Cadwan Excel Programming 2 October 3rd 05 10:18 PM
Edit Hyperlinks yazz22 Excel Worksheet Functions 2 January 15th 05 02:29 PM


All times are GMT +1. The time now is 04:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"