Move Method

Applies To

Chart object, Charts collection object, Sheets collection object, Worksheet object, Worksheets collection object.

Description

Moves the sheet to another location in the workbook.

Syntax

expression.Move(Before, After)

expression Required. An expression that returns an object in the Applies To list.

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.

Remarks

If you don't specify either Before or After, Microsoft Excel creates a new workbook that contains the moved sheet.

See Also

Copy method.

Example

This example moves Sheet1 after Sheet3 in the active workbook.

Worksheets("Sheet1").Move _
    after:=Worksheets("Sheet3")