Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I refresh multiple pivot tables at the same time in the same sheet
without opening & closing the file (refresh on open function) or going to each pivot table and hitting refresh? Thanks for the help |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use a VBA procedu
Sub AAA() Dim PVT As PivotTable For Each PVT In ActiveSheet.PivotTables PVT.RefreshTable Next PVT End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jhawk1" wrote in message ... How do I refresh multiple pivot tables at the same time in the same sheet without opening & closing the file (refresh on open function) or going to each pivot table and hitting refresh? Thanks for the help |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Chip. That works great!
"Chip Pearson" wrote: You can use a VBA procedu Sub AAA() Dim PVT As PivotTable For Each PVT In ActiveSheet.PivotTables PVT.RefreshTable Next PVT End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jhawk1" wrote in message ... How do I refresh multiple pivot tables at the same time in the same sheet without opening & closing the file (refresh on open function) or going to each pivot table and hitting refresh? Thanks for the help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
#REF in Sheets that refer to Pivot Tables | Excel Discussion (Misc queries) | |||
Refreshing Pivot Tables linked to Oracle Datasource | Excel Discussion (Misc queries) | |||
Dynamically changing several pivot tables at once | Excel Discussion (Misc queries) | |||
Ho to Delete "Ghost" Pivot Tables | Excel Discussion (Misc queries) | |||
Macro for Pivot Tables | Excel Discussion (Misc queries) |