Sheets.Move Method (Excel)
Moves the sheet to another location in the workbook.
Syntax
식 .Move(Before, After)
식 A variable that represents a Sheets object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Before |
선택 |
Variant |
The sheet before which the moved sheet will be placed. You cannot specify Before if you specify After. |
After |
선택 |
Variant |
The sheet after which the moved sheet will be placed. You cannot specify After if you specify Before. |
Remarks
If you don't specify either Before or After, Microsoft Excel creates a new workbook that contains the moved sheet.
Example
This example moves Sheet1 after Sheet3 in the active workbook.
Worksheets("Sheet1").Move _
after:=Worksheets("Sheet3")