ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Jumping to the next cell automaticly (https://www.excelbanter.com/excel-discussion-misc-queries/116085-jumping-next-cell-automaticly.html)

Amarilla

Jumping to the next cell automaticly
 
Is it possible to set Excel so that after entering a specific number of
characters into a cell the cursor will jump to the next cell automaticly?

Otto Moehrbach

Jumping to the next cell automaticly
 
No. Excel doesn't know that anything is entered into a cell until you hit
Enter or move to another cell or sheet. One way around that is to use an
event macro that will take all the characters entered over, say 5, and put
them in the next cell. Post back if this sounds like what you want. HTH
Otto
"Amarilla" wrote in message
...
Is it possible to set Excel so that after entering a specific number of
characters into a cell the cursor will jump to the next cell automaticly?




Amarilla

Jumping to the next cell automaticly
 
Thanks Otto. Yes, I think that will do what I want. How can I set it up? I'm
not very familiar with macros.

"Otto Moehrbach" wrote:

No. Excel doesn't know that anything is entered into a cell until you hit
Enter or move to another cell or sheet. One way around that is to use an
event macro that will take all the characters entered over, say 5, and put
them in the next cell. Post back if this sounds like what you want. HTH
Otto
"Amarilla" wrote in message
...
Is it possible to set Excel so that after entering a specific number of
characters into a cell the cursor will jump to the next cell automaticly?





Otto Moehrbach

Jumping to the next cell automaticly
 
Amarilla
The following macro will do what you want. I assumed that you wanted
this to work with any entry in Column A. You will have to change the code
if this assumption is not correct. I also assumed the number of characters
you want to keep in the cell is 5 and anything more than that to be put in
the cell below. The first line of the macro, the line that starts with
"Const", has the number 5 in it. Change that number to the number of
characters you want to keep.
Note that this macro is a sheet event macro and must be placed in the sheet
module of your sheet. To access that module, right-click on the sheet tab,
select View Code, and paste this macro into that module. "X" out of the
module to return to your sheet. Please post back if this is not clear or
you need more help with it. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
Const TheNum As Long = 5
If Target.Count 1 Then Exit Sub
If IsEmpty(Target.Value) Then Exit Sub
If Target.Column = 1 Then
Application.EnableEvents = False
If Len(Target.Value) TheNum Then
Target.Offset(1).Value = _
Right(Target.Value, Len(Target.Value) - TheNum)
Target.Value = Left(Target.Value, TheNum)
End If
Application.EnableEvents = True
End If
End Sub

"Amarilla" wrote in message
...
Is it possible to set Excel so that after entering a specific number of
characters into a cell the cursor will jump to the next cell automaticly?





All times are GMT +1. The time now is 07:25 PM.

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