Update Large Pivot Filter

BenW71

New Member
Joined
Apr 19, 2018
Messages
26
I have a very large pivot table including a pivot filter with many values (100+). I need to filter out to only a few of those values.

The documentation i've found and with macro record it shows this as the approach:

VBA Code:
   ActiveSheet.PivotTables("ptFull").PivotFields("PDM").CurrentPage = "(All)"
    With ActiveSheet.PivotTables("ptFull").PivotFields("PDM")
        .PivotItems("<PERSON1>").Visible = False
        .PivotItems("<PERSON2>").Visible = False
        .PivotItems("<PERSON3>").Visible = False
        .PivotItems("<PERSON4>").Visible = False
        .PivotItems("<PERSON5>").Visible = False
        .PivotItems("<PERSON6>").Visible = False
        .PivotItems("<PERSON7>").Visible = False
        .PivotItems("<PERSON8>").Visible = False
        .PivotItems("<PERSON9>").Visible = False
        .PivotItems("<PERSON10>").Visible = False
        .PivotItems("<PERSON11>").Visible = False
        .PivotItems("<PERSON12>").Visible = False
        .PivotItems("<PERSON13>").Visible = False
        .PivotItems("<PERSON14>").Visible = False
        .PivotItems("<PERSON15>").Visible = False
        .PivotItems("<PERSON16>").Visible = False
        .PivotItems("<PERSON17>").Visible = False
        .PivotItems("<PERSON18>").Visible = False
        .PivotItems("<PERSON19>").Visible = False
        .PivotItems("<PERSON20>").Visible = False
    End With
    With ActiveSheet.PivotTables("ptFull").PivotFields("PDM")
        .PivotItems("<PERSON21>").Visible = False
[B]'AND ON AND ON AND ON for everyone NOT wanted[/B]
    End With
 ActiveSheet.PivotTables("ptFull").PivotFields("PDM").EnableMultiplePageItems =True


This will work, and to do it programatically i can loop through pivotitems instead of hard coding it... But it is very inefficient even if i turn off application redraw and application calculation.

Is there any better way to set the pivot filter values instead of a loop like this?

Thanks,
- Ben
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
I had kind of similar challenge and got solution on this forum itself. Probably it works for you too.

Check this and revert -

 
Upvote 0
Thanks, but it looks like that's still doing them one at a time in a loop and is what is slow (I turn off screen updating and application refresh before the loop). I already have code to loop through the array and filter based on the list.

i was hoping there was a more efficient execution other than setting 100+ pivot items to false and leaving the 5-10 as visible.

Thanks!
 
Upvote 0
Thanks, but it looks like that's still doing them one at a time in a loop and is what is slow (I turn off screen updating and application refresh before the loop). I already have code to loop through the array and filter based on the list.

i was hoping there was a more efficient execution other than setting 100+ pivot items to false and leaving the 5-10 as visible.

Thanks!
Try it then you would realize the difference

Moreover it gives you flexibility to add or remove visible items by making change in the Named range and need not edit Macro over and over again
 
Upvote 0
Hoping for input from the forum for how to make a number of items visible within a large number of pivot items WITHOUT going through a loop and setting items to visible or not visible.

The code that was previously shown by Sanjay (and thanks for your input sanjay, it just isn't what i'm looking for) does go through the loop and would be the same issue i'm seeing with slowness.

When you filter by the UI (ie not in code) within a pivot table, it is VERY fast even if you are selecting a few items out of a huge pivotitem list in a pivot table. When you do the same execution via code with setting the ones that are not shown to .visible=false, it is very slow.

I also do turn off recalc and redrawing (with application .Calculation=xlCalculationManual, .ScreenUpdating=False, .EnableEvents=False) before i run this...
 
Upvote 0
I think the answer is (partially at least) turning off the pivot calculation via
ActiveSheet.PivotTables("<WHATEVER>").ManualUpdate = True (and back to false after).

Apparently this is separate from application calculation and screen updating.

I did a GetTickCount before and after the filtering and the execution speed doubled when i turned on that toggle.

Are there any other tips on how i can optimize this in addition?

Thanks!
 
Upvote 0
Solution

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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