在数据透视表模板上设置过滤器

时间:2017-02-17 08:58:14

标签: excel pivot-table

我正在创建一个模板文件,其中有一个数据透视表。 然后将数据透视表用作其他公式的输入。

我设法使用正确的行标签,值和报告过滤器设置表格。 enter image description here

给出了这个表

enter image description here

问题是在空模板中我无法将过滤器设置为我想要的值(在这种情况下我想只过滤掉接受为YES的项目),因为我所拥有的只是空的内容表

enter image description here

虽然我的目标是获得这个

enter image description here

我该怎么做?

1 个答案:

答案 0 :(得分:0)

这段代码起到了作用:

Set pT = Sheets("Pivot").PivotTables("PivotTable2")
With pT
    'Update the pivot table
    .PivotCache.Refresh
    'clear all filters
    .PivotFields("Accepted").ClearAllFilters
    'filters only accepted items
    .PivotFields("Accepted").CurrentPage = "YES"
End With