Pivot table multiple filters

Joined
Jun 14, 2012
Messages
3
Reaction score
0
Hi,

I am a newbie self-teaching VBA and trying to achieve the following:

1) Select a product in Pivot table 1 -> field 'From Name'

The code shoud then help to:

2) Pivot table 2 will select the same product in field 'To Name' (same data source)

3) Pivot table 3 will select the same product in field 'From Name' (different data source)

I found the code by Robert Rosenberg where he seems to explain how to do this, but the example provided doesnt seem to work, and I am unable to make it work.

http://www.contextures.com/excelfiles.html#Pivot (PT0015)

Could anyone direct me towards the right direction?

Thanks
Natalia
 
Joined
Jun 14, 2012
Messages
3
Reaction score
0
As previously mentioned, i am trying to achieve the following:

1) Select a product in Pivot table 1 -> field 'From Name'

The code shoud then help to:

2) Pivot table 2 will select the same product in field 'To Name' (same data source)

3) Pivot table 3 will select the same product in field 'From Name' (different data source)


I found the code by Robert Rosenberg where he seems to explain how to do this. I downloaded the file (see attached) and run the code and although there are not error messages popping up, the code doesnt do what is supposed to (or at least how i understand the code)

I have been going through multiple cycles of trial and error to have the code working, and i managed to get it working using the same source and the same field. however, i need to go a step further, that is using the same data source, diff field from main pivot table, and using diff data source, same field as the main pivot table.

Could anyone help me to make this code work how i listed above?



The code is as follows (spreadsheet attached):

Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)

Dim wsOther As Worksheet
Dim pt As PivotTable
Dim pt1 As PivotTable
Dim pt2 As PivotTable
Dim pt3 As PivotTable
Dim pi As PivotItem
Dim strField1 As String
Dim strField2 As String
Dim strField3 As String
Dim strField4 As String
strField1 = "Item"
strField2 = "Region"
strField3 = "Product"
strField4 = "District"
Set wsOther = Sheets("Other Pivots")
Set pt = Target
Set pt1 = wsOther.PivotTables("PT1")
Set pt2 = wsOther.PivotTables("PT2")
Set pt3 = wsOther.PivotTables("PT3")
On Error Resume Next
If LCase(pt.PivotFields(strField1).CurrentPage) <> LCase(mvPivotPageValue1) Then
'The PageField1 was changed
Application.EnableEvents = False
pt.RefreshTable
mvPivotPageValue1 = pt.PivotFields(strField1).CurrentPage

With pt1.PageFields(strField1)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue1 Then
.CurrentPage = mvPivotPageValue1
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
With pt2.PageFields(strField1)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue1 Then
.CurrentPage = mvPivotPageValue1
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
With pt3.PageFields(strField3)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue1 Then
.CurrentPage = mvPivotPageValue1
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
Application.EnableEvents = True
End If
If LCase(pt.PivotFields(strField2).CurrentPage) <> LCase(mvPivotPageValue2) Then
'The PageField2 was changed
Application.EnableEvents = False
pt.RefreshTable
mvPivotPageValue2 = pt.PivotFields(strField2).CurrentPage
With pt1.PageFields(strField2)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue2 Then
.CurrentPage = mvPivotPageValue2
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
With pt2.PageFields(strField2)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue2 Then
.CurrentPage = mvPivotPageValue2
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
With pt3.PageFields(strField4)
For Each pi In .PivotItems
If pi.Value = mvPivotPageValue2 Then
.CurrentPage = mvPivotPageValue2
Exit For
Else
.CurrentPage = "(All)"
End If
Next pi
End With
Application.EnableEvents = True
End If
End Sub
 

Attachments

  • PivotMultiPagesDiffChange.zip
    20.3 KB · Views: 80
Last edited:
Joined
Jun 14, 2012
Messages
3
Reaction score
0
I have tried to repost the code wrapped in vba tags to make it easier to read, but cant find the quotes in the text edit box.

Please if anyone can help me reviewing the code i will be happy to send the code directly by email.

In the meanwhile, i continue granulating the code to understand why it doesnt work :wall:
 
Last edited:

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top