Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the same type of event, can I launch a new browser window to a fix URL
when AC1 is clicked? If Target.Address = "$AC$1" Then 'launch http://www.myurl.com in a separate IE window End If |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Address = "$AC$1" Then _ ActiveWorkbook.FollowHyperlink Address:="http://www.myurl.com", _ NewWindow:=True End Sub -- XL2003 Regards William "CRayF" wrote in message ... In the same type of event, can I launch a new browser window to a fix URL when AC1 is clicked? If Target.Address = "$AC$1" Then 'launch http://www.myurl.com in a separate IE window End If |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
Right clicked range highlights in Excel would add the "$" to func | Excel Worksheet Functions | |||
Have excel "cell" launch PDF viewer for stored file I have | Links and Linking in Excel | |||
setup a spreadsheet that would enter an "X" when cell is clicked | Excel Worksheet Functions | |||
how can I make an excel cell "mark" or "unmark" when clicked on? | Excel Discussion (Misc queries) |