Skip to main content

Range.PivotCell property

Table of contents
  1. Syntax
  2. Example

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

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>