+ Reply to Thread
Results 1 to 5 of 5

Is there a fromula for TAB?

  1. #1
    Bill Maxwell
    Guest

    Is there a fromula for TAB?

    I'm trying to setup a barcode scanner and I wanted to see if excel has a
    formula to TAB when inputting data.




  2. #2
    Tom Ogilvy
    Guest

    Re: Is there a fromula for TAB?

    ActiveCell.offset(1,0).Select
    of
    ActiveCell.offset(0,1).Select

    or look at SendKeys

    --
    Regards,
    Tom Ogilvy

    "Bill Maxwell" <[email protected]> wrote in message
    news:Op$Wn4M%[email protected]...
    > I'm trying to setup a barcode scanner and I wanted to see if excel has a
    > formula to TAB when inputting data.
    >
    >
    >




  3. #3
    Jim Thomlinson
    Guest

    RE: Is there a fromula for TAB?

    You might be able to use vbTab which inserts a tab character. Depending on
    what you want...

    HTH

    "Bill Maxwell" wrote:

    > I'm trying to setup a barcode scanner and I wanted to see if excel has a
    > formula to TAB when inputting data.
    >
    >
    >
    >


  4. #4
    Sharad Naik
    Guest

    Re: Is there a fromula for TAB?

    OR in That worksheet,
    In Worksheet_Change event
    add
    Target.Offset(0, 1).Select
    Or
    Target.Offset(1, 0).Select

    This way in your code you can keep referring to ActiveCell

    Sharad


    "Tom Ogilvy" <[email protected]> wrote in message
    news:O9OapBN%[email protected]...
    > ActiveCell.offset(1,0).Select
    > of
    > ActiveCell.offset(0,1).Select
    >
    > or look at SendKeys
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "Bill Maxwell" <[email protected]> wrote in message
    > news:Op$Wn4M%[email protected]...
    >> I'm trying to setup a barcode scanner and I wanted to see if excel has a
    >> formula to TAB when inputting data.
    >>
    >>
    >>

    >
    >




  5. #5
    Tom Ogilvy
    Guest

    Re: Is there a fromula for TAB?

    another thing to look at is in

    Tools=>Options=>Edit
    Look at your move selection after edit setting. If it is not checked, you
    need to check it and then select either down or right. I have never used a
    bar scanner with excel, but if it is simulating keystrokes, then it probably
    sends a return after entering data in each cell. If you set the above to
    down, you shouldn't need to have any coding. (just a guess of course).

    --
    Regards,
    Tom Ogilvy

    "Sharad Naik" <[email protected]> wrote in message
    news:OOv0VKN%[email protected]...
    > OR in That worksheet,
    > In Worksheet_Change event
    > add
    > Target.Offset(0, 1).Select
    > Or
    > Target.Offset(1, 0).Select
    >
    > This way in your code you can keep referring to ActiveCell
    >
    > Sharad
    >
    >
    > "Tom Ogilvy" <[email protected]> wrote in message
    > news:O9OapBN%[email protected]...
    > > ActiveCell.offset(1,0).Select
    > > of
    > > ActiveCell.offset(0,1).Select
    > >
    > > or look at SendKeys
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > > "Bill Maxwell" <[email protected]> wrote in message
    > > news:Op$Wn4M%[email protected]...
    > >> I'm trying to setup a barcode scanner and I wanted to see if excel has

    a
    > >> formula to TAB when inputting data.
    > >>
    > >>
    > >>

    > >
    > >

    >
    >




+ 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