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