Thread: Please help me
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
vezerid
 
Posts: n/a
Default 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