Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to set up a number of cell that I can input a single digit and
have the cursor move to the next cell. -- Mike C |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
huh?
"Mike C" wrote in message ... I am trying to set up a number of cell that I can input a single digit and have the cursor move to the next cell. -- Mike C |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() In Excel 2002 try Tools Options Edit Move Selection After Enter -- rsenn ------------------------------------------------------------------------ rsenn's Profile: http://www.excelforum.com/member.php...o&userid=29050 View this thread: http://www.excelforum.com/showthread...hreadid=497260 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
uh, what's does the next cell mean?
To the right until you get to a certain column, then back to column A? Or down a row? One way is to build a tiny userform with just a textbox on it. Add this code to the userform module: Option Explicit Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) Select Case KeyAscii Case 48 To 57 'Numbers 0-9 With ActiveCell .Value = Chr(KeyAscii) If .Column = 3 Then .Offset(1, -2).Activate Else .Offset(0, 1).Activate End If End With End Select KeyAscii = 0 TextBox1.Value = "" End Sub Then add this to a general module to show the form: Option Explicit Sub testme01() Cells(ActiveCell.Row, 1).Activate UserForm1.Show End Sub I always start in column A and use A:C. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Debra Dalgleish has some getstarted instructions for userforms at: http://contextures.com/xlUserForm01.html Mike C wrote: I am trying to set up a number of cell that I can input a single digit and have the cursor move to the next cell. -- Mike C -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formatting number value to text value in excel | Excel Worksheet Functions | |||
How do I Auto Number a field in Excel - sequential PO# | Excel Worksheet Functions | |||
Excel Range Value issue (Excel 97 Vs Excel 2003) | Excel Discussion (Misc queries) | |||
Excel 2003 random number generator | Excel Discussion (Misc queries) | |||
Difference in number of Excel NewsGroups | Excel Discussion (Misc queries) |