Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default refresh option of pivot table not working

What am I doing incorrectly that is making it so that I do not even have the
"refresh data" option available to me in my pivot table? I want to modify
the spreadsheet so that my pivot table and graph automatically update if I
change information in the mother formula worksheet.

Thank you for your help.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,979
Default refresh option of pivot table not working

The 'Refresh every x minutes' option will be available if the pivot
table is based on an external data source.

You could use programming to update the pivot table if the worksheet is
activated. For example, right-click on the pivot table worksheet's sheet
tab, choose View Code, and paste the following code:

Private Sub Worksheet_Activate()
Dim pt As PivotTable
For Each pt In ActiveSheet.PivotTables
pt.PivotCache.Refresh
Next pt
End Sub


ceejgrl wrote:
What am I doing incorrectly that is making it so that I do not even have the
"refresh data" option available to me in my pivot table? I want to modify
the spreadsheet so that my pivot table and graph automatically update if I
change information in the mother formula worksheet.

Thank you for your help.



--
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2k Pivot Table refresh scenario GDCross Excel Discussion (Misc queries) 1 June 1st 06 09:12 PM
Pivot Table Refresh Problem Robert Hamilton Excel Worksheet Functions 2 May 9th 06 08:10 PM
Refresh scenario information in a pivot table Fin Analyst Excel Discussion (Misc queries) 2 March 30th 06 05:13 PM
Pivot table Data refresh SSD1 Excel Worksheet Functions 2 June 17th 05 09:13 PM
Pivot Table Refresh Options PROVEXCEL Excel Discussion (Misc queries) 2 December 17th 04 12:33 PM


All times are GMT +1. The time now is 06:40 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"