Copy the below code.
Press Alt F11
Click on the 'ThisWorkbook' object of your spreadhseet.
Paste in the code
Save your spreadsheet
Activate cell A1
tab to the right, and
when you get to column K,
the cursor will drop down one row and go to column A.
'----- code starts below this line
Public sColumn As String
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _
ByVal Target As Excel.Range)
' Code modified 09/03/2006 by Stanley D. Grom, Jr.
' Windows XP Professional SP2
' Excel 2003 SP2
'
sColumn = ActiveCell.Column
If sColumn = 11 Then
ActiveCell.Offset(1, -10).Range("A1").Select
End If
End Sub
'----- code ends above this line
Have a great day,
Stan