Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
I want to enter, say 2 char in a cell and then want to jump to the next cell on the right without having to press enter key. Possible ? thnx. Sanjiv. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not possible.
Excel has no way of knowing when you are finished editing that cell until you indicate by moving out of that cell. VBA code will not run while in Edit mode. Gord Dibben MS Excel MVP On Sat, 30 Aug 2008 05:43:01 -0700, Sanjiv wrote: Hello, I want to enter, say 2 char in a cell and then want to jump to the next cell on the right without having to press enter key. Possible ? thnx. Sanjiv. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well, of course it's possible.
Press the Tab key. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Put the following macros in a standard module:
Sub onn() Application.OnKey "2", "MyMacro" End Sub Sub offf() Application.OnKey "2" End Sub Sub MyMacro() ActiveCell.Value = 2 ActiveCell.Offset(0, 1).Select End Sub First run onn. From then on, if you touch the 2 key, a 2 will be entered in the active cell and selection will move one cell to the right. To cancel, run offf. -- Gary''s Student - gsnu200802 "Sanjiv" wrote: Hello, I want to enter, say 2 char in a cell and then want to jump to the next cell on the right without having to press enter key. Possible ? thnx. Sanjiv. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
With VBA, see there : http://cjoint.com/?jcndDvOSuN Bye "Sanjiv" a écrit dans le message de ... Hello, I want to enter, say 2 char in a cell and then want to jump to the next cell on the right without having to press enter key. Possible ? thnx. Sanjiv. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cannot define cell name from menu | Setting up and Configuration of Excel | |||
Is it possible to use a cell reference to define the database? | Excel Worksheet Functions | |||
define one cell location throughout workbook? | Excel Worksheet Functions | |||
Define Name in active cell | Excel Worksheet Functions | |||
how to define a cell to where i can link to it. | Excel Discussion (Misc queries) |