Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Converting text to Hyperlink cells in a column

In excel how do I convert a column that has URL adresses in text form to
hyperlink withouthaving to select each cell place the cursor in it and hit
enter to convert it?
--
Always Learning
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Converting text to Hyperlink cells in a column

Why clog up with a bunch of hyperlinks. Why not just have the typed url in a
list with a double_click event to go there.

Right click sheet tabview codeinsert this. type something like
desiredwebsite.com in a cell and just double click on the cell.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
ActiveWorkbook.FollowHyperlink _
Address:="http://www." & Target
End Sub


--
Don Guillett
SalesAid Software

"Mareadito Siempre" wrote in
message ...
In excel how do I convert a column that has URL adresses in text form to
hyperlink withouthaving to select each cell place the cursor in it and hit
enter to convert it?
--
Always Learning



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Converting text to Hyperlink cells in a column

I got this database in which many institutions had their URL in a column but
all of them in a text format. In order to make them aHyperlink I have to go
into each cell place the cursor then "enter" converting each cell into a
hyperlink. I was wondering if this could be accomplishe in a more automated
form since I have 5,000 entries.
--
Always Learning


"Don Guillett" wrote:

Why clog up with a bunch of hyperlinks. Why not just have the typed url in a
list with a double_click event to go there.

Right click sheet tabview codeinsert this. type something like
desiredwebsite.com in a cell and just double click on the cell.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
ActiveWorkbook.FollowHyperlink _
Address:="http://www." & Target
End Sub


--
Don Guillett
SalesAid Software

"Mareadito Siempre" wrote in
message ...
In excel how do I convert a column that has URL adresses in text form to
hyperlink withouthaving to select each cell place the cursor in it and hit
enter to convert it?
--
Always Learning




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Converting text to Hyperlink cells in a column

Sub MakeHyperlinks()
'David McRitchie
Dim cell As Range
For Each cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
With Worksheets(1)
.Hyperlinks.Add anchor:=cell, _
Address:=cell.Value, _
ScreenTip:=cell.Value, _
TextToDisplay:=cell.Value
End With
Next cell
End Sub


Gord Dibben MS Excel MVP

On Tue, 26 Dec 2006 12:36:01 -0800, Mareadito Siempre
wrote:

I got this database in which many institutions had their URL in a column but
all of them in a text format. In order to make them aHyperlink I have to go
into each cell place the cursor then "enter" converting each cell into a
hyperlink. I was wondering if this could be accomplishe in a more automated
form since I have 5,000 entries.


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
Sumproduct issues SteveDB1 Excel Worksheet Functions 25 June 3rd 09 04:58 PM
How to sort column when cells contain both text & number (Sample X Hreinn Excel Worksheet Functions 6 December 12th 06 06:42 PM
How do I combine spreadsheets and documents in one file? Trish Excel Discussion (Misc queries) 3 November 9th 06 09:17 PM
converting general cells format to text junkgrrl Excel Discussion (Misc queries) 1 January 12th 06 05:50 PM
Converting hyperlink picture object to hyerlink text [email protected] Excel Discussion (Misc queries) 0 October 4th 05 09:53 AM


All times are GMT +1. The time now is 04:03 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"