Loop through pivot table filter

cogswel__cogs

Board Regular
Joined
Jan 3, 2018
Messages
168
Hi,
I have a a pivot field in the filter area that I would like to loop through.
The below works when I am in row but in filter area it does not.
Would someone know what I need to change.

For i = 1 To ActiveSheet.PivotTables("PivotTable1").PivotFields("Department Rollup Level 7 (Division)").PivotItems.Count
If ActiveSheet.PivotTables("PivotTable1").PivotFields("Department Rollup Level 7 (Division)").PivotItems(i).Visible = True Then
cc(j) = ActiveSheet.PivotTables("PivotTable1").PivotFields("Department Rollup Level 7 (Division)").PivotItems(i).Value
j = j + 1
End If
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
The code works for me, whether the field is in the row or in the area.

I would like to comment that you can simplify the code like this:
VBA Code:
  With ActiveSheet.PivotTables("PivotTable1").PivotFields("Department Rollup Level 7 (Division)")
    For i = 1 To .PivotItems.Count
      If .PivotItems(i).Visible = True Then
        cc(j) = .PivotItems(i).Value
        j = j + 1
      End If
    Next
  End With
 
Upvote 0

Forum statistics

Threads
1,215,131
Messages
6,123,222
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top