This topic has not yet been rated - Rate this topic

Worksheet.Move Method

Office 2007
Moves the sheet to another location in the workbook.

Syntax

expression.Move(Before, After)

expression   A variable that represents a Worksheet object.

Parameters

NameRequired/OptionalData TypeDescription
BeforeOptionalVariantThe sheet before which the moved sheet will be placed. You cannot specify Before if you specify After.
AfterOptionalVariant 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.

Visual Basic for Applications
Worksheets("Sheet1").Move _
    after:=Worksheets("Sheet3")



Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ