Hello All,
In order to make the 'Up' and 'Down' arrow keys work properly, I am using some code like the following:
First, the Worksheet Selection Change event:
If Target.Row = 49 Or Target.Row = 58 Then
Application.OnKey "{Up}", "NextUp_toRow31"
GoTo UpArrowEnd
End If
and then, in a...