Skip to main content

Range.PivotField property

Table of contents
  1. Syntax
  2. Example

Returns a PivotField object that represents the PivotTable field containing the upper-left corner of the specified range.

Syntax

expression.PivotField

expression A variable that represents a Range object.

Example

This example displays the name of the PivotTable field that contains the active cell.

Worksheets("Sheet1").Activate
MsgBox "The active cell is in the field " & ActiveCell.PivotField.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>