Please help me
This can be done with the Worksheet_SelectionChange event macro:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells(Target.Row, "L").Select
End Sub
To install:
Right click the sheet tab. Choose View Code.
Paste the above code.
HTH
Kostis Vezerides
|