Run a code section for 2 Pivot tables.

lemnguyen

New Member
Joined
Oct 7, 2016
Messages
7
Hello,

I just found this code for my purpose, but this code only run one time for filtering one pivot table, but i want to run it for 2 pivot tables (from different sheet, different source). What should i add more code into this code section?
In this code, it run for Worksheet "Tháng M-1" and Pivottable "Checkshop_M-1", but i also want that it run for Worksheet "Tháng M" and Pivottable "Checkshop_M" with the same reference value in A1 cell as well.

---------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
'Update by Extendoffice 20180702
Dim xPTable As PivotTable
Dim xPFile As PivotField
Dim xStr As String
On Error Resume Next
If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
Application.ScreenUpdating = False
Set xPTable = Worksheets("Tháng M-1").PivotTables("Checkshop_M-1")
Set xPFile = xPTable.PivotFields("Tên Shop")
xStr = Target.Text
xPFile.ClearAllFilters
xPFile.CurrentPage = xStr
Application.ScreenUpdating = True
End Sub
--------------------------------------
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Based on where you are at with VBA it probably easiest to just repeat the code:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    'Update by Extendoffice 20180702
    Dim xPTable As PivotTable
    Dim xPFile As PivotField
    Dim xStr As String
    On Error Resume Next
    If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
    Application.ScreenUpdating = False
    
    ' Pivot table 1
    Set xPTable = Worksheets("Tháng M-1").PivotTables("Checkshop_M-1")
    Set xPFile = xPTable.PivotFields("Tên Shop")
    xStr = Target.Text
    xPFile.ClearAllFilters
    xPFile.CurrentPage = xStr
    
    ' Pivot table 2
    Set xPTable = Worksheets("Tháng M").PivotTables("Checkshop_M")
    Set xPFile = xPTable.PivotFields("Tên Shop")
    xStr = Target.Text
    xPFile.ClearAllFilters
    xPFile.CurrentPage = xStr
      
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution
Private Sub Worksheet_Change(ByVal Target As Range) 'Update by Extendoffice 20180702 Dim xPTable As PivotTable Dim xPFile As PivotField Dim xStr As String On Error Resume Next If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub Application.ScreenUpdating = False ' Pivot table 1 Set xPTable = Worksheets("Tháng M-1").PivotTables("Checkshop_M-1") Set xPFile = xPTable.PivotFields("Tên Shop") xStr = Target.Text xPFile.ClearAllFilters xPFile.CurrentPage = xStr ' Pivot table 2 Set xPTable = Worksheets("Tháng M").PivotTables("Checkshop_M") Set xPFile = xPTable.PivotFields("Tên Shop") xStr = Target.Text xPFile.ClearAllFilters xPFile.CurrentPage = xStr Application.ScreenUpdating = True End Sub
Dear Alex,

It works perfectly!

Many thanks.
 
Upvote 0

Forum statistics

Threads
1,213,514
Messages
6,114,078
Members
448,547
Latest member
arndtea

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