title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Worksheet.Move method (Excel) |
vbaxl10.chm174079 |
|
|
808e6eb8-7811-6f72-5acc-b3779587aa52 |
05/30/2019 |
medium |
Moves the sheet to another location in the workbook.
expression.Move (Before, After)
expression A variable that represents a Worksheet object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Before | Optional | Variant | The sheet before which the moved sheet will be placed. You cannot specify Before if you specify After. |
After | Optional | Variant | The sheet after which the moved sheet will be placed. You cannot specify After if you specify Before. |
If you don't specify either Before or After, Microsoft Excel creates a new workbook that contains the moved sheet.
This example moves Sheet1 after Sheet3 in the active workbook.
Worksheets("Sheet1").Move _
after:=Worksheets("Sheet3")
[!includeSupport and feedback]