Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I want to link a few sites to some cells in excel. I would like place a link within specific text. Ex. _Link_name (\"http://www.google.com\")_ and have the URL hidden. Link example goes to Google.com. Thank you, Joe -- JoeStL ------------------------------------------------------------------------ JoeStL's Profile: http://www.excelforum.com/member.php...o&userid=29080 View this thread: http://www.excelforum.com/showthread...hreadid=491317 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm not sure you can hide the tooltip that shows up when you let the mouse hover
over the cell. Maybe you could add a shape to the worksheet and then assign a macro to that shape. The macro could follow the hyperlink. For instance, I added a couple of rectangles to a worksheet and assigned the same macro to both of them: Option Explicit Sub myLink() Dim myHyperLink As String myHyperLink = "" Select Case LCase(Application.Caller) Case Is = "rectangle 3": myHyperLink = "http://www.google.com" Case Is = "rectangle 4": myHyperLink = "http://www.microsoft.com" End Select If myHyperLink = "" Then Beep Else ThisWorkbook.FollowHyperlink Address:=myHyperLink, NewWindow:=True End If End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm JoeStL wrote: I want to link a few sites to some cells in excel. I would like place a link within specific text. Ex. _Link_name (\"http://www.google.com\")_ and have the URL hidden. Link example goes to Google.com. Thank you, Joe -- JoeStL ------------------------------------------------------------------------ JoeStL's Profile: http://www.excelforum.com/member.php...o&userid=29080 View this thread: http://www.excelforum.com/showthread...hreadid=491317 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Insert & link a graphic file in Excel 2003 -- updatable pictures! | Excel Discussion (Misc queries) | |||
Link pictures in Excel 2003 doesn't work! | Excel Discussion (Misc queries) | |||
How do I save excel as HTML (but not as a full web page)? | New Users to Excel | |||
Link from webpage to excel sheet | Excel Discussion (Misc queries) | |||
excel CSV is interpreted as HTML | Excel Discussion (Misc queries) |