+ Reply to Thread
Results 1 to 2 of 2

automatically jump to top of the next column in a form

  1. #1
    Arvin Wilson
    Guest

    automatically jump to top of the next column in a form

    I created a three colum form for entering bar code data. How can I
    automatically jump to the top of the next column when the last entry is made
    in the previous column?

  2. #2
    bigwheel
    Guest

    RE: automatically jump to top of the next column in a form

    Something like this should do the trick:

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If ActiveCell.Row = 21 Then
    Cells(1, ActiveCell.Column + 1).Select
    End If
    End Sub

    If you attempt to go past row 20 (i.e. row 21) the active cell starts at the
    top of the next column.

    "Arvin Wilson" wrote:

    > I created a three colum form for entering bar code data. How can I
    > automatically jump to the top of the next column when the last entry is made
    > in the previous column?


+ 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