M
Mike Gill
How can i goto to a specified cell after enter.
Michael G.
Michael G.
Chip Pearson said:You can't. You can specify only up, down, left, or right, not a
specific cell.
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
KL said:Hi Mike,
The answer is yes. Try putting this into a standard module (e.g. Module1):
Sub ModifyEnter_NumericKeypad()
Application.OnKey "{ENTER}", "SelectCell"
End Sub
Sub ModifyEnter()
Application.OnKey "~", "SelectCell"
End Sub
Sub ReleaseEnterKeys()
Application.OnKey "{ENTER}"
Application.OnKey "~"
End Sub
Sub SelectCell()
ActiveSheet.Range("A1").Select
End Sub
Regards,
KL