Excel数据透视表过滤器,其值字段中包含文本项

时间:2016-07-27 07:21:15

标签: excel vba filter pivot-table

我使用下面的代码来过滤名为(Missing Data)的文字,但是在我运行代码后,文本项仍然可以在数据透视表中看到。

概念:数据透视表是从常规表创建的,ServiceRange列包含文本项和值项之间的混合。

        For Each PI In PvtTbl_RegionalPeerGroup.PivotFields("ServiceRange").PivotItems
            If PI.Caption = "(Missing Data)" Then
                PI.Visible = False
                Stop
            End If
        Next PI

0 个答案:

没有答案