A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
answer found:
- in using a key remapping program (key tweak), i used remap of:
key 59 (Left Windows) to F5 (in excel is: GoTo popup, may as well have straight up winkey do something else when not using the ALT key).
- in excel, thisworkbook, placed:
Application.OnKey "%{F5}", "yourmacro" 'Alt-Left Windows key, makes it happen
- in submodule place your macro"
Sub yourmacro()
do what want
End Sub