+ Reply to Thread
Results 1 to 3 of 3

how to move the cursor to column A after entering data column F

  1. #1
    tskaiser
    Guest

    how to move the cursor to column A after entering data column F

    Is there a way when entering data in a spreadsheet - to have the cursor move
    to column A after entering data in Column F or beyond?

  2. #2
    Rae Drysdale
    Guest

    RE: how to move the cursor to column A after entering data column F

    If you enter data across the worksheet press tab, when you have entered the
    data in column F press the Enter key. Check also Tools | Options |Edit that
    you have selected Down in the Move selection after Enter. Does this work for
    you?
    --
    Rae Drysdale


    "tskaiser" wrote:

    > Is there a way when entering data in a spreadsheet - to have the cursor move
    > to column A after entering data in Column F or beyond?


  3. #3
    excelent
    Guest

    RE: how to move the cursor to column A after entering data column

    try this (put in sheet module)

    Private Sub Worksheet_Change(ByVal Target As Range)
    If ActiveCell.Column >= 6 Then ActiveCell.Offset(, -ActiveCell.Column +
    1).Select
    ' If ActiveCell.Column >= 6 Then ActiveCell.Offset(-1, -ActiveCell.Column +
    1).Select ' if u want same row
    End Sub



    > "tskaiser" wrote:
    >
    > > Is there a way when entering data in a spreadsheet - to have the cursor move
    > > to column A after entering data in Column F or beyond?


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1