A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
https://learn.microsoft.com/en-us/office/vba/api/Excel.Application.OnKey
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Can anyone supply an excel script/macro to move cursor to a cell address where the cursor is currently located. i wish to use in the context of a list of excel contents with the address of each in a column next to the content listing, then by using a keyboard shorcut eg Control+G yhe cursor will take me to the cell. I am a power lotus user and I can achieve this simple manouver with a simple macro of {EDIT-GOTO @CELLpointer("contents")} but having trouble becoming excel script competent.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
you are welcome。
Thankyou for the response - appreciate your information.
sub myGo()
range("A2").select
end sub
Private Sub Workbook_Open()
Application.OnKey "+^G","myGo"
end sub