Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oh Wise Ones,
I just need the curser to move down when I press enter, only when inside a set range on a set workbook/worksheet, and move to the right all other times. From JLGWhiz- First I tied this: Set MyRange = ActiveSheet.Range("J3:L12") If Intersect(MyRange, Target) Then Application.MoveAfterReturn = True Application.MoveAfterReturnDirection = xlDown Else Application.MoveAfterReturnDirection = xlToRight End If Did not do anything, still moved to the right. Then I tried this from another post: Private Sub Worksheet_Change(ByVal Target As Excel.Range) Set Target = Intersect(Target, Range("J3:L12")) If Not Target Is Nothing Then Application.MoveAfterReturn = True Application.MoveAfterReturnDirection = xlToRight Else Application.MoveAfterReturn = True Application.MoveAfterReturnDirection = xlDown End If End Sub Did not work either, got an error when it was placed in a module. Any suggestions? Thanks, Mike |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
When enter key is pressed, cursor does not move to next cell in Ex | Excel Discussion (Misc queries) | |||
move cursor after inputting data without using enter key | New Users to Excel | |||
how do I move cursor without tab, enter or arrow in Excel | Excel Discussion (Misc queries) | |||
Cursor not to move when pressing the enter key | Excel Programming | |||
Cursor not to move when hitting the enter key | Excel Worksheet Functions |