Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1009 Bytes

Excel.PivotItem.DrilledDown.md

File metadata and controls

45 lines (26 loc) · 1009 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PivotItem.DrilledDown property (Excel)
vbaxl10.chm246091
vbaxl10.chm246091
Excel.PivotItem.DrilledDown
863909c6-7d2c-4b54-7fb9-de79a6487e4d
05/07/2019
medium

PivotItem.DrilledDown property (Excel)

True if the flag for the specified PivotTable field or PivotTable item is set to "drilled" (expanded or visible). Read/write Boolean.

Syntax

expression.DrilledDown

expression A variable that represents a PivotItem object.

Remarks

Use this property only for OLAP data sources.

You cannot set this property if the field or item is hidden.

Example

This example sets the flags to "not drilled" for all items in the state field in the third PivotTable report on the active worksheet.

ActiveSheet.PivotTables("PivotTable3") _ 
 .PivotFields("state").DrilledDown = False

[!includeSupport and feedback]