Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 931 Bytes

Excel.Range.Worksheet.md

File metadata and controls

43 lines (26 loc) · 931 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.Worksheet property (Excel)
vbaxl10.chm144220
vbaxl10.chm144220
Excel.Range.Worksheet
af38bdde-d523-a4cd-929e-1f67464b2593
05/11/2019
medium

Range.Worksheet property (Excel)

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

[!includeSupport and feedback]