Question : Controlling the steps in Excel

If I'd like to direct the "tab" key (when hit) to move the cursor to the next cell down instead of the next cell across, how do I do that?

Answer : Controlling the steps in Excel

try something like that:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Place into Sheet module

Application.OnKey "{TAB}", "Down1"


End Sub

Private Sub Down1()
'Place into Module1

    Selection.Offset(1, 0).Select

End Sub
Random Solutions  
 
programming4us programming4us