SelectionMode Property

Microsoft Excel Visual Basic

SelectionMode Property

       

Returns or sets the PivotTable report structured selection mode. Read/write XlPTSelectionMode.

XlPTSelectionMode can be one of these XlPTSelectionMode constants.
xlBlanks
xlButton
xlDataAndLabel
xlDataOnly
xlFirstRow
xlLabelOnly
xlOrigin

expression.SelectionMode

expression   Required. An expression that returns one of the objects in the Applies To list.

Remarks

If the PivotTable field isn’t in outline form, specifying the sum of any of the constants and xlFirstRow is equivalent to specifying the constant alone.

Example

This example enables structured selection mode and then sets the first PivotTable report on worksheet one to allow only data to be selected.

Application.PivotTableSelection = True
Worksheets(1).PivotTables(1).SelectionMode = xlDataOnly

In this example, the PivotTable report is in outline form.

Application.PivotTableSelection = True
Worksheets(1).PivotTables(1).SelectionMode = _
    xlDataOnly + xlFirstRow