A
AA
I don't like to take my hands off the keyboard, even to reach for the
cursor pad. So I have four macros: Up, Down, Right, and Left assigned
to Ctrl-k, Ctrl-i, Ctrl-l, and Ctrl-j.
I'd like to be able to select cells the same way, the equivalent of
Shift-Up, Shift-Down, Shift-Right, and Shift-Left. When I record a
macro to do Shift-Right for example, and assign it to Ctrl-Shift-l, all
it will do is select one cell to the right plus the initial cell.
I want it to continue to select to the right if I press Ctrl-Shift-l
again:
Sub SelRight()
'
' SelRight Macro
'
' Keyboard Shortcut: Ctrl+Shift+L
'
ActiveCell.Range("A1:B1").Select
End Sub
What am I missing?
TIA,
Andy
cursor pad. So I have four macros: Up, Down, Right, and Left assigned
to Ctrl-k, Ctrl-i, Ctrl-l, and Ctrl-j.
I'd like to be able to select cells the same way, the equivalent of
Shift-Up, Shift-Down, Shift-Right, and Shift-Left. When I record a
macro to do Shift-Right for example, and assign it to Ctrl-Shift-l, all
it will do is select one cell to the right plus the initial cell.
I want it to continue to select to the right if I press Ctrl-Shift-l
again:
Sub SelRight()
'
' SelRight Macro
'
' Keyboard Shortcut: Ctrl+Shift+L
'
ActiveCell.Range("A1:B1").Select
End Sub
What am I missing?
TIA,
Andy