G
Gunner
hi!
I have this formula.(See underneath) Is it possible that
the pivotitem can be picked up by direct the value of cell?
Something like this:
..PivotItems = ShtData.Range("E" & 9).Value
My problem is that there are 1000 different values in
PivotFields "Customers". If it was only 12 entries, I
could just listed them.
Private Sub OptionButton1_Click()
' Months only
Application.ScreenUpdating = False
With ActiveSheet.PivotTables(1).PivotFields
("Customers")
.PivotItems("Jan").Visible = True
Does anyone know how to solve this?
Gunner
I have this formula.(See underneath) Is it possible that
the pivotitem can be picked up by direct the value of cell?
Something like this:
..PivotItems = ShtData.Range("E" & 9).Value
My problem is that there are 1000 different values in
PivotFields "Customers". If it was only 12 entries, I
could just listed them.
Private Sub OptionButton1_Click()
' Months only
Application.ScreenUpdating = False
With ActiveSheet.PivotTables(1).PivotFields
("Customers")
.PivotItems("Jan").Visible = True
Does anyone know how to solve this?
Gunner