Auto Update of Pivot Table [Pls help ]

-=Kid=-

New Member
Joined
Nov 16, 2005
Messages
11
Hi, now i am trying to update the pivot table when the spreadsheet is being call.

I use the following method in the project explorer

Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
Worksheets("PivotTable").PivotTables(3).PivotCache.Refresh
End Sub

Worksheets("PivotTable") is my spreadsheet name
PivotTables(3) is the name of my pivot table

but i still hit a error

Run-time error '1004':
Unable to get the PivotTables property of the Worksheet Class

I have try :

changing Worksheets("PivotTable") to Worksheets(3)
changing the name of my pivot table

Any1 know why ? Thx in advance :wink:

[/img]
 

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.
Here are a couple of alternatives :-
Code:
Worksheets("PivotTable").PivotTables(3).RefreshTable
Worksheets("PivotTable").Range("A1").PivotTable.RefreshTable
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,272
Members
449,075
Latest member
staticfluids

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