View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Svilen Pachedzhiev Svilen Pachedzhiev is offline
external usenet poster
 
Posts: 3
Default Update multiple pivot tables

Thanks Mark,
Maybe I was a little bit unclear. It is not only about refreshing but to
skip the clicks on to fields Date and to check the new date for which new
data is available on every PT.

But i found the solution it is like this:

ActiveSheet.PivotTables("PivotTable2").PivotFields ("date"). _
CurrentPage =
ActiveSheet.PivotTables("PivotTable1").PivotFields ("date").CurrentPage.Value

Now I want to do the same but for some PTs date shuld be synchronized like
T-1 if T is the desireble date for the most of the PTs. Any ideas about
that?

Regards,

Svilen

"Spreadsheet Solutions" wrote in message
. ..
Svilen;

You can update any pivot table upon opening by setting that feature in the
pivottable options dialog box.

--
Regards;
Mark Rosenkrantz
--
Spreadsheet Solutions
Uithoorn
Netherlands
--
E:
W:
www.spreadsheetsolutions.nl
--

"Svilen Pachedzhiev" wrote in message
...
Hi,
I have several sheets with data and one sheete with several pivot tables
for
this data.
The common thing between them is the date field they always shuld be
updated
for the same date. I put the date in the PAGE field of pivot table wizard.
So is it posible to update all my PTs to the same date with a macro?

Thanks,

Svilen