Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.15 KB

Excel.Charts.Copy.md

File metadata and controls

49 lines (29 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Charts.Copy method (Excel)
vbaxl10.chm217073
vbaxl10.chm217073
Excel.Charts.Copy
7b1181e9-0aad-7979-8a87-2b07bff8b7a4
04/20/2019
medium

Charts.Copy method (Excel)

Copies the sheet to another location in the workbook.

Syntax

expression.Copy (Before, After)

expression A variable that represents a Charts object.

Parameters

Name Required/Optional Data type Description
Before Optional Variant The sheet before which the copied sheet will be placed. You cannot specify Before if you specify After.
After Optional Variant The sheet after which the copied 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 copied sheet.

Example

This example copies Sheet1, placing the copy after Sheet3.

Worksheets("Sheet1").Copy After:=Worksheets("Sheet3")

[!includeSupport and feedback]