Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.01 KB

Excel.Range.PivotCell.md

File metadata and controls

43 lines (26 loc) · 1.01 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.PivotCell property (Excel)
vbaxl10.chm144233
vbaxl10.chm144233
Excel.Range.PivotCell
976f6393-db3b-d52a-0cbc-88a73bb7c070
05/11/2019
medium

Range.PivotCell property (Excel)

Returns a PivotCell object that represents a cell in a PivotTable report.

Syntax

expression.PivotCell

expression A variable that represents a Range object.

Example

This example determines the name of the PivotTable that the PivotCell object is located in and notifies the user. The example assumes that a PivotTable exists on the active worksheet and that cell A3 is located in the PivotTable.

Sub CheckPivotCell() 
 
 'Determine the name of the PivotTable the PivotCell is located in. 
 MsgBox "Cell A3 is located in PivotTable: " & _ 
 Application.Range("A3").PivotCell.Parent 
 
End Sub

[!includeSupport and feedback]