Link to home
Start Free TrialLog in
Avatar of Taras
TarasFlag for Canada

asked on

Pivot table Refresh on File Open

I am using Excel 2007.  I have a Pivot Table that is getting External data from SQL Server via Microsoft Query.  This uses a named connection and that connection has properties, including a Command Text Property. This contains the query string that pulling data in In my workbook on sheet1 which  I named  All_Data.
I have my pivot table on Sheet2 which I named Pivot. Source for my pivot table is Sheet1 – All_data and used  dynamic range which I named Pivot_Range.
 Pivot_Rage=All_Data!$A$1:INDEX(All_Data!$1:$1048576,MATCH("ZZZZZZ",All_Data!$A:$A), MATCH("ZZZZZZ",All_Data!$1:$1))
 
What I need is how to refresh my workbook on file open. I assume that when Sheet1- All_Data is refreshed that my pivot table on Sheet2- Pivot will be refreshed automatically.
I got some suggestion from
Calacuccia:
Private Sub Workbook_Open()
Me.Worksheets("Sheet1").PivotTables(1).PivotCache.Refresh
End Sub

 and MelindaJonson
Right click on pivot table
click PivotTable options
click on the Data tab
check the box "Refresh data when opening file"

However they not working.
I tried this too:
Me.Worksheets("All_Data").QueryTables(1).Refresh
Me.Worksheets("Pivot").PivotTables(1).RefreshTable
And on first line I got Run time error ‘9’ Subscript Out of range.

How to got this working in this scenario.
And how to get this working in scenario when I  have just one spreadsheet, that have just pivot table on  in my case worksheet “Pivot”  with out having worksheet All_Data which I use as source for my pivot table.

Avatar of calacuccia
calacuccia
Flag of Belgium image

Me.Worksheets("Sheet1").PivotTables(1).PivotCache.Refresh

Have you tried this exact command with "Sheet2"? (of course you have to give the exact name which you used for sheet2 (as your pivottable is in Sheet2)..
Subscript out of range is often because your Worksheet name is not correct.
SOLUTION
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
>>Subscript out of range is often because your Worksheet name is not correct.That was my first thought as well, but in this case it looks like a quirk of how ListObjects that are linked to external data sources behave :)
Avatar of Taras

ASKER

Calacuccia you or me missing something here, probably me.

Yes I gave exact name:
Me.Worksheets("Pivot").PivotTables(1).PivotCache.Refresh
It runs without error and it did what is saying to do. It refreshed  pivot table with data that are not refreshed means old data (from source that is not refreshed).
Source of pivot table is All_data Sheet1 and that Sheet1 is getting data from SQL Server query as I explained. Source of pivot table is not refreshed. Pivot table is just refreshed with old data from Sheet1-All_Data.
Ok, I am missing something, I believe Patrick is on the right track.
Avatar of Taras

ASKER

Patrick example is very good, however I can use It when I got data from SQL Server in my Workbook.
 To adjust my question and address problem properly, I need to ask question like this.
How I can refresh my data in Sheet1 – All_Data on open file with upper mentioned scenario. Forget pivot table.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Taras

ASKER

Patrick it is not working.
Simply , I need something that will do the same thing like :Go  to data tab in excel  menu and press Refress All .
After I press Refress All (ctr+Alt+F5)  it refreshed properly.
Avatar of Taras

ASKER

I found it and it is working.
Private Sub Workbook_Open()

ActiveWorkbook.RefreshAll
End Sub.
Nice & simple
>>Patrick it is not working.Please explain what you mean by that, because it worked perfectly for me.
Avatar of Taras

ASKER

Thanks a lot