Share via

Excel move to specific cell

Anonymous
2019-02-15T07:22:32+00:00

Hi - i need to create a log sheet to map storage of numbered samples in a tray.

i need to create a 10x10 table in excel and scan inthe barcodes fromthe samples. Once i get to A10 i need the cursor to automatically move to B1, then when i get to B10 it needs to move to C1 etc.

thank you

Microsoft 365 and Office | Excel | For home | 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 answers

Sort by: Most helpful
  1. Vijay A. Verma 104.9K Reputation points Volunteer Moderator
    2019-02-15T07:55:40+00:00

    Hi saracasson ,

    I am Vijay, an Independent Advisor. I am here to work with you on this problem.

    1. Make a backup of your workbook.
    2. Open your workbook and ALT+F11
    3. Locate your Workbook name in Project Explorer Window
    4. Double click on your worksheet name
    5. Copy paste the Macro code given below
    6. Save your file as .xlsm Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ExitSub If Intersect(Target, Me.Range("A10:I10")) Is Nothing Then Exit Sub Application.EnableEvents = False Me.Cells(1, Target.Column + 1).Select ExitSub: Application.EnableEvents = True End Sub

    Do let me know if you require any further help on this. Will be glad to help you.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2019-02-15T07:43:53+00:00

    Hello saracasson,

    my name is Manuel and I am an independent advisor.

    As far as I know this won't be possible without writing a macro or using a tool to have a function which automatically jumps to cell X when cell Y is reached.

    To make this easier you can give names to specific cells:

    https://support.office.com/en-us/article/define...

    If you know the time distance in which the mouse has to move from cell to cell you can use a tool like ghost mouse where you record an input and ghost mouse repeats the steps.

    Greetings,

    Manuel

    Was this answer helpful?

    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more