LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gold9er
 
Posts: n/a
Default how do i create hyperlinks

i have a microsoft excel document with 32 sheets of urls that are plain text
and not clickable. i want to be able to convert all the links to be able to
click on them. they are in full url format (http://www.site.com) i think
someone used this code to convert them into plain text urls:
================================================== ===
1.Same process as a MS Word document. From Excel, fire up the VB editor (ALT
F11).
2.The Visual Basic interface will open up. From the INSERT menu, click on
MODULE to add a module.
3.A new document opens up. In there, paste the following code:

Sub RemoveHyperLinksGLobally()
Dim i As Integer
For i = ActiveSheet.Hyperlinks.Count To 1 Step -1
ActiveSheet.Hyperlinks(i).Delete
Next i
End Sub
============================================
my question is:
how do i convert them into clickable links. thank you
 
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
hyperlinks in different drives cdroot4383 Excel Discussion (Misc queries) 2 January 5th 06 07:35 PM
Losing hyperlinks RedChip Excel Discussion (Misc queries) 0 November 30th 05 10:56 AM
Picture hyperlinks don't work when publishing to web...? norders Excel Discussion (Misc queries) 0 November 25th 05 01:29 PM
how to create multiple hyperlinks within a dropdown list dan Excel Discussion (Misc queries) 0 June 29th 05 01:49 AM
Hyperlinks and sorting data Rena Excel Discussion (Misc queries) 0 June 3rd 05 07:50 PM


All times are GMT +1. The time now is 09:31 PM.

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

About Us

"It's about Microsoft Excel"