Limiting number of columns

in10serush

New Member
Joined
Jun 16, 2008
Messages
1
Ok, so I'm not to savvy with excel, I mean i can make a basic spreadsheet, but thats about it. What I am trying to do is have a set number of columns, so that when I hit tab it automaticaly goes to the first cel in the next row. The reason I want to do this is because my company takes make model and serial numbers and puts them in spreadsheets( obviously ) we use a scanner to do this and it is programmed to automatically tab over once there is an entry. This is all done to limit time on the keyboard and "manually" pressing the tab button. It would be nice to eliminate hitting -enter- -back- -back- -back- -back- or having to point and click. Any help would be awesome Thanks
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Welcome to the board...

Perhaps you could do something with Sheet protection...

Highlight the entire Sheet (Press ALT + A)
Click Format - Cells - Protection
CHECK "Locked"
Click OK

Now highlight only the cells that will be used for your data entry
Click Format - Cells - Protection
UNCheck "Locked"
Click OK

Now Click tools - protection - protect sheet
CHECK Every Option EXCEPT "Select Locked Cells"
Add a password if you want, it's not needed..
click OK.

Hope that helps...
 
Upvote 0
You could try putting your information in a list. When you reach the end of your list, in 2003 at least, it puts you on the next row first column of your list. List option is under Data - List. I use lists quite often and works pretty good.
 
Upvote 0
Perhaps: right click the worksheet tab and select View Code then paste in.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column > 10 Then Target.Offset(1, -10).Select
End Sub
then close the code window using the X. This will restrict entry to columns A to J.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top