Set Tab Key
First enter this sub:
Sub goright()
ActiveCell.Offset(0, 10).Select
End Sub
then enter and run this sub:
Sub setonkey()
Application.OnKey "{TAB}", "goright"
End Sub
This sets up the TAB key. If you are on A1 and touch TAB you will go to K1
--
Gary''s Student - gsnu200763
"EricBB" wrote:
How do I set the TAB key to move 10 cells to the right? When I hit TAB, it
moves only one cell to the right. Is it possible?
|