Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I regularly use some files for which I want the cursor to go Down after
pressing Enter, and others where I want it to go Right. Is there an icon I can set up on a toolbar to allow me to change the option very quickly ? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() try this Sub Toggle_Enter_Key_Direction() ' ' Toggles enter key between moving right and down ' Macro recorded 2/25/2008 by T. Bradshaw ' ' If Application.MoveAfterReturnDirection = xlToRight Then Application.MoveAfterReturnDirection = xlDown Else Application.MoveAfterReturnDirection = xlToRight End If End Sub On Feb 25, 1:12 pm, (Paul S) wrote: I regularly use some files for which I want the cursor to go Down after pressing Enter, and others where I want it to go Right. Is there an icon I can set up on a toolbar to allow me to change the option very quickly ? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Tim879 wrote:
try this Sub Toggle_Enter_Key_Direction() ' ' Toggles enter key between moving right and down ' Macro recorded 2/25/2008 by T. Bradshaw ' ' If Application.MoveAfterReturnDirection = xlToRight Then Application.MoveAfterReturnDirection = xlDown Else Application.MoveAfterReturnDirection = xlToRight End If End Sub On Feb 25, 1:12 pm, (Paul S) wrote: I regularly use some files for which I want the cursor to go Down after pressing Enter, and others where I want it to go Right. Is there an icon I can set up on a toolbar to allow me to change the option very quickly ? Thanks Tim, that works great. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to change "move selection after enter" in office 2007 | Excel Discussion (Misc queries) | |||
Move Selection after Enter | Excel Discussion (Misc queries) | |||
Tools - Option - "move selection after enter" | Excel Worksheet Functions | |||
Change position of move or copy worksheet option in Excel | Excel Discussion (Misc queries) | |||
In Excel 2000, can I change the direction of the move selection a. | Excel Discussion (Misc queries) |