![]() |
How to auto tab
I use a handheld scanner to read barcodes. How do I make excel automatically
tab to the next cell after input. |
How to auto tab
Hi Joel,
Did a project using a scanner and I used an event macro, Worksheet Change to make stuff happen when an item was entered with the scanner. HTH Regards, Howard "Joel Ganger" <Joel wrote in message ... I use a handheld scanner to read barcodes. How do I make excel automatically tab to the next cell after input. |
How to auto tab
Ok sounds simply enough, how do I do it?
"L. Howard Kittle" wrote: Hi Joel, Did a project using a scanner and I used an event macro, Worksheet Change to make stuff happen when an item was entered with the scanner. HTH Regards, Howard "Joel Ganger" <Joel wrote in message ... I use a handheld scanner to read barcodes. How do I make excel automatically tab to the next cell after input. |
How to auto tab
Hi Joel,
Too much information in my reply, try one of these... First Tabs rows and second Tabs Colums. Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 1 Then ActiveCell.Offset(1, 0).Select End If End Sub Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 1 Then ActiveCell.Offset(0, 1).Select End If End Sub HTH Regards Howard "Joel Ganger" <Joel wrote in message ... I use a handheld scanner to read barcodes. How do I make excel automatically tab to the next cell after input. |
All times are GMT +1. The time now is 04:38 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com