Refresh all pivot tables in a workbook

P

Phil Wales

I'm not a VB expert - but

You should just be able to record a macro while clicking the refresh button
for each pivot table, then assign a button to it.
 
N

nc

Hi Phil

I think there is a refresh all keyword.

Phil Wales said:
I'm not a VB expert - but

You should just be able to record a macro while clicking the refresh button
for each pivot table, then assign a button to it.
 
D

Debra Dalgleish

Use the RefreshAll method:

ActiveWorkbook.RefreshAll

Or, open the External Data toolbar, and click the Refresh All button.
 
Top