我使用下面的代码来过滤名为(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