View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Dennis
 
Posts: n/a
Default Pivot Table - How VBA to "Show All".Visable = True

Using 2003


The code below does not work because "Show All" is not a valid PivotItems
property class for the PivotField class.

With ActiveSheet.PivotTables("PivotTable1") _
.PivotFields("Split")
.PivotItems("Show All").Visible = False
.PivotItems("1200-01 ยท Prescription").Visible = True
End With

How can I VBA-code my desire to "Show All".Visable = True (or False)?

TIA Dennis