Thread: Force Tab
View Single Post
  #2   Report Post  
Otto Moehrbach
 
Posts: n/a
Default

I assume you are tabbing out of the U cell after you entered something in
that cell. If so, then a Worksheet_Change event macro will work for you.
Something like:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 21 Then _
Cells(Target.Row, 1).Select
End Sub

HTH Otto
"Jamie" wrote in message
...
I am working in Excel 2002.

Currently I have a table (A1:U14), is there any way that I can apply
coding
to a column, in this case, column U, so when I tab out of cell U14 the
cursor
will go to the beginning of that row, cell A14. Or to the beginning of
whatever row I may be tabbing out of in column U.
--
Jamie