View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Peter D[_2_] Peter D[_2_] is offline
external usenet poster
 
Posts: 1
Default Refresh Pivot Tables without refreshing functions

I have a worksheet with five pivot tables which are refreshed from a macro as
follows -
For Each pt In ActiveSheet.PivotTables
pt.RefreshTable
Next pt
The worksheet also has a lot of custom functions. The problem is that the
functions also refresh when the code line "pt.RefreshTable" runs. Is there a
way to refresh the pivot tables without running the functions?
Thanks