Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
is there a way to use ThisWorkbook.RefreshAll to refresh all pivot tables in the workbook but leave a query "unrefreshed"? Thanks, -- ______ Regards, Greg |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Nope... You can traverse through all of the sheets and all of the pivot tbles
on those sheets refreshing each something like this... sub RefreshPivotTables dim wks as worksheet dim pvt as pivottable for each wks in worksheets for each pvt in wks.pivottables pvt.refreshtable next pvt next wks end sub -- HTH... Jim Thomlinson "Greg" wrote: hi, is there a way to use ThisWorkbook.RefreshAll to refresh all pivot tables in the workbook but leave a query "unrefreshed"? Thanks, -- ______ Regards, Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
pasting into pivot tables query | Excel Discussion (Misc queries) | |||
Re-Linking Pivot tables to MS Query | Excel Programming | |||
Using Macros to create pivot tables - query re last row | Excel Programming | |||
Refreshing MS Query and Excel Pivot Tables using VBA | Excel Programming | |||
Refreshing Pivot Tables QUery | Excel Programming |