Hello,

I have the following code to convert my < and > keys to increase/decrease decimal via my Personal Workbook. Upon opening, these should be active. I recently upgraded my pc and now when I open Excel I have to go out to the personal workbook and start the macro to get it to work. Is there a reason for this lack of start on open, or is there a better way to do this? Thanks. I have Excel 2013 64-bit.

Sub controlS()
Application.OnKey "^{,}", "Increase_Decimal"
Application.OnKey "^{.}", "Decrease_Decimal"
End Sub
----------------------------------------------------------------

Sub Increase_Decimal()
Application.CommandBars.FindControl(ID:=398).Execute
End Sub

----------------------------------------------------------
Sub Decrease_Decimal()
Application.CommandBars.FindControl(ID:=399).Execute
End Sub
------------------------------------------------------------
Private Sub Workbook_Open()
Call controlS
End Sub