A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Links and Linking
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

hyperlink



 
 
Thread Tools Display Modes
  #1  
Old November 3rd, 2004, 05:22 PM
Brad White
external usenet poster
 
Posts: n/a
Default hyperlink

How do I set up a column so that all new entries are
automatically hyperlinks?

http entries do that automatically now, but e-mail addresses
and word documents do not.

I have to manually convert it to a link for every new entry.
--
Thanks,
Brad.


  #2  
Old November 4th, 2004, 12:20 AM
Bill Manville
external usenet poster
 
Posts: n/a
Default

Brad White wrote:
How do I set up a column so that all new entries are
automatically hyperlinks?


I think you would need a Worksheet_Change event procedure in the module
belonging to the worksheet. Something like this:

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim C As Range
Dim stAddr As String
' check if column A

If Intersect(Target, Me.Columns(1)) Is Nothing Then Exit Sub
For Each C In Intersect(Target, Me.Columns(1)).Cells
If C.Hyperlinks.Count = 1 Then C.Hyperlinks(1).Delete
If C.Text "" Then
If LCase(Left(C.Text, 5)) = "http:" Then
stAddr = C.Text
ElseIf InStr(C.Text, "@") 0 Then
If LCase(Left(C.Text, 7)) = "mailto:" Then
stAddr = C.Text
Else
stAddr = "mailto:" & C.Text
End If
Else
' don't know, just try the text we got
stAddr = C.Text
End If
C.Hyperlinks.Add C, Address:=stAddr, TextToDisplay:=C.Text
End If
Next
End Sub

Bill Manville
MVP - Microsoft Excel, Oxford, England
No email replies please - respond to newsgroup

  #3  
Old November 4th, 2004, 03:15 PM
Brad White
external usenet poster
 
Posts: n/a
Default

Bill,

Thanks for the reply.

Turns out that what I wanted was slightly different from what I asked for.

I ended up with a macro attached to a shortcut.
If the cell is empty, pastes from the keyboard.
Then converts whatever is in the cell to a hyperlink.
Thanks for the jumpstart.

I wanted to pass the range into the sub, but this works.

Brad.
-----------------------
Here is what I did.

Private Sub InsertHyperLink()
Dim C As Range
Dim stAddr As String
Dim stDispl As String
'ByVal Target As Excel.Range

For Each C In Selection.Cells
If C.Hyperlinks.Count = 1 Then C.Hyperlinks(1).Delete
If C.Text = "" Then
C.PasteSpecial
End If
If C.Text "" Then
If LCase(Left(C.Text, 5)) = "http:" Then
stAddr = C.Text
stDispl = Right(C.Text, Len(C.Text) - 5)
ElseIf InStr(C.Text, "@") 0 Then
If LCase(Left(C.Text, 7)) = "mailto:" Then
stAddr = C.Text
stDispl = Right(C.Text, Len(C.Text) - 7)
Else
stAddr = "mailto:" & C.Text
stDispl = C.Text
End If
Else
' don't know, just try the text we got
stAddr = C.Text
stDispl = C.Text
End If
C.Hyperlinks.Add C, Address:=stAddr, TextToDisplay:=stDispl
End If
Next
End Sub

Sub Hyperlink()
'
' Hyperlink Macro
' Macro recorded 11/3/2004 by bwhite
'
' Keyboard Shortcut: Ctrl+k
Call InsertHyperLink

End Sub



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
hyperlink field not using hyperlink base Mary Database Design 2 August 27th, 2004 11:03 PM
Still having Web Page Pathing Problems / Relative Links show Netwo webmaster Powerpoint 27 July 15th, 2004 11:16 PM
Insert/Edit HyperLink not working correctly brmauer Powerpoint 3 June 24th, 2004 03:31 PM
Multiple hyperlink and followed hyperlink styles skellis Formatting Long Documents 3 June 17th, 2004 10:18 PM
Hyperlink path - possible problem Dorci Using Forms 0 May 25th, 2004 04:41 PM


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


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