G Guest Aug 15, 2007 #1 I know in Access I can create labels in forms that hyperlink to where ever I want. Can you do this in Excel forms?
I know in Access I can create labels in forms that hyperlink to where ever I want. Can you do this in Excel forms?
D Dave Peterson Aug 15, 2007 #2 Like in a userform? You can add a label to the userform. And use its click event: Option Explicit Private Sub Label1_Click() ThisWorkbook.FollowHyperlink Address:="http://www.microsoft.com" End Sub You could even format the text in that label to look more like a hyperlink (blue/underlined).
Like in a userform? You can add a label to the userform. And use its click event: Option Explicit Private Sub Label1_Click() ThisWorkbook.FollowHyperlink Address:="http://www.microsoft.com" End Sub You could even format the text in that label to look more like a hyperlink (blue/underlined).
G Guest Aug 17, 2007 #3 Cheers,Thanks I will try. Dave Peterson said: Like in a userform? You can add a label to the userform. And use its click event: Option Explicit Private Sub Label1_Click() ThisWorkbook.FollowHyperlink Address:="http://www.microsoft.com" End Sub You could even format the text in that label to look more like a hyperlink (blue/underlined). Click to expand...
Cheers,Thanks I will try. Dave Peterson said: Like in a userform? You can add a label to the userform. And use its click event: Option Explicit Private Sub Label1_Click() ThisWorkbook.FollowHyperlink Address:="http://www.microsoft.com" End Sub You could even format the text in that label to look more like a hyperlink (blue/underlined). Click to expand...