Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default 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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default 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" wrote in message
...
I'm trying to setup a barcode scanner and I wanted to see if excel has a
formula to TAB when inputting data.





  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 212
Default 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" wrote in message
...
ActiveCell.offset(1,0).Select
of
ActiveCell.offset(0,1).Select

or look at SendKeys

--
Regards,
Tom Ogilvy

"Bill Maxwell" wrote in message
...
I'm trying to setup a barcode scanner and I wanted to see if excel has a
formula to TAB when inputting data.







  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default 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" wrote in message
...
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" wrote in message
...
ActiveCell.offset(1,0).Select
of
ActiveCell.offset(0,1).Select

or look at SendKeys

--
Regards,
Tom Ogilvy

"Bill Maxwell" wrote in message
...
I'm trying to setup a barcode scanner and I wanted to see if excel has

a
formula to TAB when inputting data.









  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 983
Default 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.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
fromula bar sturgeon Excel Discussion (Misc queries) 2 September 25th 07 03:09 PM
Using Array Fromula ub Excel Discussion (Misc queries) 6 June 28th 07 12:36 AM
Fromula tboy Excel Discussion (Misc queries) 2 May 29th 07 02:17 PM
Corporated into the same fromula please. Steved Excel Worksheet Functions 5 October 12th 05 12:10 AM
Need a fromula comotoman Excel Discussion (Misc queries) 3 October 3rd 05 05:00 PM


All times are GMT +1. The time now is 12:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"