Please use Code tags when posting code, not Quote tags. Code tags help to preserve formatting.
In the ThisWorkbook Module, enter the following code. (If you have multiple workbooks open, check that it is the correct one, there will be a 'ThisWorkbook' module for each workbook that is open.
Private Sub Workbook_Activate()
Application.OnKey "+^{<}", "Increase_Decimal"
Application.OnKey "+^{>}", "Decrease_Decimal"
End Sub
Private Sub Workbook_Deactivate()
Application.OnKey "+^{<}"
Application.OnKey "+^{>}"
End Sub
Save your workbook, deactivate the workbook and reactivate it, either by closing it or switching to another one, then back again, your desired shortcuts should now work.
edit:- the deactivate code is there so that it only runs on the workbook with the code, the shortcut keys will return to normal for other workbooks.
Bookmarks