I want to add a key binding with Excel VBA. I've searched the Internet for this and only Word VBA key binding was found. The way we do in Word cannot be done in Excel:
Code:
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyAlt, wdKey0), _ KeyCategory:=wdKeyCategoryCommand, _ Command:="TestKeybinding"
How are the codes in Excel then?
Thanks in advance.