Update Pivot Tables - VBA

nichola.hartley

New Member
Joined
Jun 23, 2011
Messages
3
Hi. I have multiple pivot tables in multiple worksheets - on each worksheet I have a source pivot table (OLAP cube) and 4 pivots that work off this data.

In my macro I go through each worksheet, change the necessary olap cube fields and then i want to refresh all the pivot tables in that sheet - i do not however want to refresh all the workbook.

I can only seem to do this by refreshing one specific pivot table eg
'ActiveSheet.PivotTables("ForecastSourcePivot").PivotCache.Refresh'

OR refresh all in the workbook eg
'ActiveWorkbook.RefreshAll'

Is there a way to do each sheet individually?!

Thanks!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try:
Code:
Dim PT As PivotTable
For Each PT In ActiveSheet.PivotTables
    PT.PivotCache.Refresh
Next PT
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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