Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to move the curser automatically in an excel spreadsheet to a
specified address on the work sheet; say from $K$73 to $N$1. Is there any way to do this in a formula? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Right click on the sheet tab and select view code.
Paste in code like this: Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Target.Address = "$K$73" Then Range("N1").Select End If End Sub -- Regards, Tom Ogilvy "Jeff D." <Jeff wrote in message ... I need to move the curser automatically in an excel spreadsheet to a specified address on the work sheet; say from $K$73 to $N$1. Is there any way to do this in a formula? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you Mr. Ogilvy - You made an "Old man smile again". This worked
perfectly! "Tom Ogilvy" wrote: Right click on the sheet tab and select view code. Paste in code like this: Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Target.Address = "$K$73" Then Range("N1").Select End If End Sub -- Regards, Tom Ogilvy "Jeff D." <Jeff wrote in message ... I need to move the curser automatically in an excel spreadsheet to a specified address on the work sheet; say from $K$73 to $N$1. Is there any way to do this in a formula? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
adjust curser movement | Excel Worksheet Functions | |||
My curser is locked.... | Excel Discussion (Misc queries) | |||
spreadsheet Curser | Excel Discussion (Misc queries) | |||
Curser Locked | Excel Discussion (Misc queries) | |||
Wild curser | Excel Discussion (Misc queries) |