ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   auto move cursor after entering number in excel (https://www.excelbanter.com/excel-worksheet-functions/62642-auto-move-cursor-after-entering-number-excel.html)

Mike C

auto move cursor after entering number in excel
 
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

Bob Umlas

auto move cursor after entering number in excel
 
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




rsenn

auto move cursor after entering number in excel
 

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


Dave Peterson

auto move cursor after entering number in excel
 
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


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com