Share via

Excel script/macro to move cursor to a cell address where the cursor is currently located.

Anonymous
2022-11-27T00:49:36+00:00

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.

Microsoft 365 and Office | Excel | For business | Windows

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.

0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2022-11-27T22:18:08+00:00

    you are welcome。

    0 comments No comments
  2. Anonymous
    2022-11-27T21:51:42+00:00

    Thankyou for the response - appreciate your information.

    0 comments No comments
  3. Anonymous
    2022-11-27T01:55:05+00:00

    sub myGo()

    range("A2").select

    end sub

    Private Sub Workbook_Open()

    Application.OnKey "+^G","myGo"

    end sub

    0 comments No comments