Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel sheet setup, need only 2 columns with auto-tab and return

Hello all, I was wondering if anyone can help me with a slight issue, I'm
unsure whether Excel has this functionality.

What I need is a spreadsheet using only 2 columns with the first column auto
advancing to the next column then after data is entered in the 2nd I need it
to auto return to the next row first column.

Now here's the stickler, I am using a Symbol Tech hand scanner connected to
a thinkpad while doing inventory of our IT department. Each piece of
equipment has a S/N and asset tag which I need to scan thus the need for only
2 columns. And due to the fact that while using the scanner I am sometimes
10 or 20ft away from the thinkpad it is a real pain to have to walk over
after each scan or to move the equipment off of the rack.

So if anyone has any ideas I'm willing to listen :) If excel cannot do this
then it's all ok, just means I will have to get a commercial software package
somewhere that can do this. TIA
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Excel sheet setup, need only 2 columns with auto-tab and return

--Select all columns to the right from ColC. Select ColC hit Ctrl+Shift+Right
arrow to select. From menu FormatColumnHide

--Select the sheet tab which you want to work with. Right click the sheet
tab and click on 'View Code'. This will launch VBE. Paste the below code to
the right blank portion. Get back to to workbook and try out.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 2 Then
Range("A" & Target.Row + 1).Activate
Else
Target.Offset(, 1).Activate
End If
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Seaghost" wrote:

Hello all, I was wondering if anyone can help me with a slight issue, I'm
unsure whether Excel has this functionality.

What I need is a spreadsheet using only 2 columns with the first column auto
advancing to the next column then after data is entered in the 2nd I need it
to auto return to the next row first column.

Now here's the stickler, I am using a Symbol Tech hand scanner connected to
a thinkpad while doing inventory of our IT department. Each piece of
equipment has a S/N and asset tag which I need to scan thus the need for only
2 columns. And due to the fact that while using the scanner I am sometimes
10 or 20ft away from the thinkpad it is a real pain to have to walk over
after each scan or to move the equipment off of the rack.

So if anyone has any ideas I'm willing to listen :) If excel cannot do this
then it's all ok, just means I will have to get a commercial software package
somewhere that can do this. TIA

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
setup help/excel wk/sheet to record museum library collection alaskakiwi New Users to Excel 1 January 26th 09 09:14 AM
how to setup a excel sheet to be protect after save and close file Marco Excel Discussion (Misc queries) 0 March 11th 08 10:56 PM
Order Sheet Excel Setup [email protected][_2_] New Users to Excel 2 December 20th 07 12:16 PM
How do I setup in Excel an 11 X 17 work sheet? jimh Excel Discussion (Misc queries) 2 October 25th 07 08:09 PM
how can you auto return from columns B1 to A2 arran tw Excel Discussion (Misc queries) 6 July 12th 06 08:01 PM


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

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"