Skip to main content

Range.Worksheet property

Table of contents
  1. Syntax
  2. Example

Returns a Worksheet object that represents the worksheet containing the specified range. Read-only.

Syntax

expression.Worksheet

expression A variable that represents a Range object.

Example

This example displays the name of the worksheet that contains the active cell. The example must be run from a worksheet.

MsgBox ActiveCell.Worksheet.Name

This example displays the name of the worksheet that contains the range named "testRange."

MsgBox Range("testRange").Worksheet.Name

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>