VBA Pivot Tables- run-time error 1004 Unable to get the PivotTables properties of the worksheet class.

Maggy0911

New Member
Joined
Sep 21, 2017
Messages
5
I have one data source sheet and 3 pivot tables that I want to all update automatically. I am getting this run-time error 1004 when I try to input a new row or make any changes. Below is the code I have for all 3 pivot tables. Can someone help me please?

Run-time error 1004 Unable to get the PivotTables properties of the worksheet class.

Private Sub Worksheet_Change(ByVal Target As Range)
Worksheets("Data").PivotTables("PivotTable1").PivotCache.Refresh
Worksheets("Data").PivotTables("PivotTable2").PivotCache.Refresh
Worksheets("Data").PivotTables("PivotTable3").PivotCache.Refresh
End Sub
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
The error message means that one or more of these pivot tables are not present in Data sheet.
 
Upvote 0
I decided to start over and make it as simple as possible. I created a whole new workbook and created 1 pivot table off of the data source. I still got the error. I tried putting the code in this workbook instead of the data sheet and now I can make changes to the data source without getting a error. But when I looked at the pivot table its not updating automatically. Below is the code I am using. My data sheet is Sheet1 and my pivot table is Sheet2. I am so confused.

Private Sub Worksheet_Change(ByVal Target As Range)
Worksheets("Sheet1").PivotTables("Sheet2").PivotCache.Refresh
End Sub

I have one data source sheet and 3 pivot tables that I want to all update automatically. I am getting this run-time error 1004 when I try to input a new row or make any changes. Below is the code I have for all 3 pivot tables. Can someone help me please?

Run-time error 1004 Unable to get the PivotTables properties of the worksheet class.

Private Sub Worksheet_Change(ByVal Target As Range)
Worksheets("Data").PivotTables("PivotTable1").PivotCache.Refresh
Worksheets("Data").PivotTables("PivotTable2").PivotCache.Refresh
Worksheets("Data").PivotTables("PivotTable3").PivotCache.Refresh
End Sub
 
Upvote 0
Worksheet_Change is the name for sheet's event procedure - if you wanted the code to run every time you update Sheet2, then place Worksheet_Change code in VBA module of Sheet2.

At workbook level, the name of procedure is Workbook_SheetChange - it runs if any of the sheet is changed.

Also disable events before refreshing pivot cache.

Worksheet module code (whichever sheet's update should trigger refresh):
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Worksheets("Sheet1").PivotTables("Sheet2").PivotCache.Refresh
    Application.EnableEvents = True

End Sub

Workbook module code (if updating any of the sheets should trigger a refresh):
Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    Application.EnableEvents = False
    Worksheets("Sheet1").PivotTables("Sheet2").PivotCache.Refresh
    Application.EnableEvents = True
End Sub
 
Upvote 1
Thank you for this by the way. What would be the code if I had multiple pivot tables to automatically update from one source data sheet?

Worksheet_Change is the name for sheet's event procedure - if you wanted the code to run every time you update Sheet2, then place Worksheet_Change code in VBA module of Sheet2.

At workbook level, the name of procedure is Workbook_SheetChange - it runs if any of the sheet is changed.

Also disable events before refreshing pivot cache.

Worksheet module code (whichever sheet's update should trigger refresh):
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Worksheets("Sheet1").PivotTables("Sheet2").PivotCache.Refresh
    Application.EnableEvents = True

End Sub

Workbook module code (if updating any of the sheets should trigger a refresh):
Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    Application.EnableEvents = False
    Worksheets("Sheet1").PivotTables("Sheet2").PivotCache.Refresh
    Application.EnableEvents = True
End Sub
 
Upvote 0
If both pivot table refresh depend on same sheet: If you have two pivot tables (Pivot1 in Sheet1 and Pivot2 in Sheet2) in that need to be refreshed whenever a change in Sheet5 occurs, your Sheet5 module code will be:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Worksheets("Sheet1").PivotTables("Pivot1").PivotCache.Refresh
    Worksheets("Sheet2").PivotTables("Pivot2").PivotCache.Refresh
    Application.EnableEvents = True
End Sub

If each pivot table depends on a different sheet: Create Worksheet_Change for each sheet in which data is being changed to trigger Refresh. Or use the Workbook module event code Workbook_SheetChange().
 
Upvote 0

Forum statistics

Threads
1,216,761
Messages
6,132,565
Members
449,736
Latest member
anthx

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