Skip to main content

Worksheets object

Table of contents
  1. Remarks
  2. Example

A collection of all the Worksheet objects in the specified or active workbook. Each Worksheet object represents a worksheet.

Remarks

The Worksheets object is also a member of the Sheets collection. The Sheets collection contains all the sheets in the workbook (both chart sheets and worksheets).

Example

Use the Worksheets property of the Workbook object to return the Worksheets collection.The following example moves all the worksheets to the end of the workbook.

Worksheets.Move After:=Sheets(Sheets.Count)

Use the Add method to create a new worksheet and add it to the collection. The following example adds two new worksheets before sheet one of the active workbook.

Worksheets.Add Count:=2, Before:=Sheets(1)

Use Worksheets (index), where index is the worksheet index number or name, to return a single Worksheet object. The following example hides worksheet one in the active workbook.

Worksheets(1).Visible = False

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>