Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.15 KB

Excel.Sheets.Move.md

File metadata and controls

49 lines (30 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Sheets.Move method (Excel)
vbaxl10.chm152079
vbaxl10.chm152079
Excel.Sheets.Move
8cfb8888-b676-15ba-47eb-9d3d4dae5416
05/15/2019
medium

Sheets.Move method (Excel)

Moves the sheet to another location in the workbook.

Syntax

expression.Move (Before, After)

expression A variable that represents a Sheets object.

Parameters

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.

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")

[!includeSupport and feedback]