Trouble transfering Pivot Filters :-(

E_DPSG

Board Regular
Joined
Jul 17, 2008
Messages
82
Good day all -

I need your assistance. I have the following code, but it is giving me an error: Unable to get the PivotItms propert of the PivotField Class.

Long story short, We have two different sources for data and depending on the source, the data differs. Our LOB needs to be able to see the data in the different slices and of course do not want to switch tabs. So I made a button, hard coded the values and it works... but now they are introducing new values and I am tired of adding in the hard coded values to switch between the two. Below was what I came up with, but the above error is causing me grief.

Do you see my error?

Code:
Dim FromFltr As String
Dim ToFltr As String

 ToFltr = "SrcFilter1"
    FromFltr = "SrcFilter2"


 For Each pvtItem In ActiveSheet.PivotTables("PivotProductivity").PivotFields(FromFltr).PivotItems
             If pvtItem.Visible = True Then
                ActiveSheet.PivotTables("PivotProductivity").PivotFields(ToFltr).PivotItems(pvtItem).Visible = True
             Else
                ActiveSheet.PivotTables("PivotProductivity").PivotFields(ToFltr).PivotItems(pvtItem).Visible = False
            End If
        Next
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Nevermind...... I figured out the issue..... Here is the updated logic:
Code:
 For Each pvtItem In ActiveSheet.PivotTables("PivotProductivity").PivotFields(FromFltr).PivotItems
            MyNewNameItem = pvtItem.Value
             If pvtItem.Visible = True Then
                
                ActiveSheet.PivotTables("PivotProductivity").PivotFields(ToFltr).PivotItems(MyNewNameItem).Visible = True
             Else
                ActiveSheet.PivotTables("PivotProductivity").PivotFields(ToFltr).PivotItems(MyNewNameItem).Visible = False
            End If
        Next
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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