Skip to content

Latest commit

 

History

History
50 lines (28 loc) · 1.28 KB

Excel.Chart.ShowReportFilterFieldButtons.md

File metadata and controls

50 lines (28 loc) · 1.28 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.ShowReportFilterFieldButtons property (Excel)
vbaxl10.chm149189
vbaxl10.chm149189
Excel.Chart.ShowReportFilterFieldButtons
6b7aa6e2-2216-caef-5936-d9c9681b60db
04/16/2019
medium

Chart.ShowReportFilterFieldButtons property (Excel)

Returns or sets whether to display the report filter field buttons on a PivotChart. Read/write.

Syntax

expression.ShowReportFilterFieldButtons

expression A variable that represents a Chart object.

Return value

Boolean

Remarks

Set the ShowReportFilterFieldButtons property to True to display the Report Filter Field buttons on the specified PivotChart. Set the property to False to hide the buttons.

The ShowReportFilterFieldButtons property corresponds to the Show Report Filter Field Buttons command on the Field Buttons drop-down list of the Analyze tab, which is available when a PivotChart is selected.

Example

The following code example sets Chart 1 to display report filter field buttons.

ActiveSheet.ChartObjects("Chart 1").Activate 
ActiveChart.ShowReportFilterFieldButtons = True

[!includeSupport and feedback]