title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.MoveAfterReturnDirection property (Excel) |
vbaxl10.chm133169 |
|
|
c11d8e36-755e-c911-de44-8b630b549418 |
04/05/2019 |
medium |
Returns or sets the direction in which the active cell is moved when the user presses Enter. Read/write XlDirection.
expression.MoveAfterReturnDirection
expression A variable that represents an Application object.
XlDirection can be one of these constants:
- xlDown
- xlToLeft
- xlToRight
- xlUp
If the MoveAfterReturn property is False, the selection doesn't move at all, regardless of how the MoveAfterReturnDirection property is set.
This example causes the active cell to move to the right when the user presses Enter.
Application.MoveAfterReturn = True
Application.MoveAfterReturnDirection = xlToRight
[!includeSupport and feedback]