Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
CrimsonPlague29
 
Posts: n/a
Default Pivot Table Data-Deleted Data still appears

Hello,

I have a primary sheet with all the data that is pulled into my pivot table,
but if I remove the data from the data range it still appears Data Field Drop
Down Menu of the pivot table, How can these sets of data be eliminated from
the pivot table with out completely recreating the table????

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary Brown
 
Posts: n/a
Default Pivot Table Data-Deleted Data still appears


Try this link

http://www.contextures.com/xlPivot04.html


--
Gary Brown
------------------------------------------------------------------------
Gary Brown's Profile: http://www.excelforum.com/member.php...o&userid=17084
View this thread: http://www.excelforum.com/showthread...hreadid=539211

  #3   Report Post  
Posted to microsoft.public.excel.misc
CrimsonPlague29
 
Posts: n/a
Default Pivot Table Data-Deleted Data still appears

Thanks.

CrimsonPlague29

"Gary Brown" wrote:


Try this link

http://www.contextures.com/xlPivot04.html


--
Gary Brown
------------------------------------------------------------------------
Gary Brown's Profile: http://www.excelforum.com/member.php...o&userid=17084
View this thread: http://www.excelforum.com/showthread...hreadid=539211


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35
Default Pivot Table Data-Deleted Data still appears

THanks - I've trying to overcome this for quite a while!

"CrimsonPlague29" wrote:

Thanks.

CrimsonPlague29

"Gary Brown" wrote:


Try this link

http://www.contextures.com/xlPivot04.html


--
Gary Brown
------------------------------------------------------------------------
Gary Brown's Profile: http://www.excelforum.com/member.php...o&userid=17084
View this thread: http://www.excelforum.com/showthread...hreadid=539211


  #5   Report Post  
Posted to microsoft.public.excel.misc
KCM KCM is offline
external usenet poster
 
Posts: 2
Default Pivot Table Data-Deleted Data still appears

I tried taking the field out, refreshing the data, dropping it back in, and
refreshing and it is still there. (Excel 2003)

"CrimsonPlague29" wrote:

Hello,

I have a primary sheet with all the data that is pulled into my pivot table,
but if I remove the data from the data range it still appears Data Field Drop
Down Menu of the pivot table, How can these sets of data be eliminated from
the pivot table with out completely recreating the table????

Thanks



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,979
Default Pivot Table Data-Deleted Data still appears

There are instructions here for clearing old items from a pivot table:

http://www.contextures.com/xlPivot04.html


KCM wrote:
I tried taking the field out, refreshing the data, dropping it back in, and
refreshing and it is still there. (Excel 2003)

"CrimsonPlague29" wrote:


Hello,

I have a primary sheet with all the data that is pulled into my pivot table,
but if I remove the data from the data range it still appears Data Field Drop
Down Menu of the pivot table, How can these sets of data be eliminated from
the pivot table with out completely recreating the table????

Thanks




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

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Pivot Table Data-Deleted Data still appears

Hi Debra,

I've tried this and it works...except that my macro now takes 10 minutes to
complete (normally it's like 45 sec or so): there are 13 tabs each containing
5 pivot tables. Since my primary pivot in all the tabs are copies of 1 main
pivot, how would you code it such that only that main pivot gets cleared?
I'm not concerned about the other 4 pivots in each tabs.

Thanks,
Fred

"Debra Dalgleish" wrote:

There are instructions here for clearing old items from a pivot table:

http://www.contextures.com/xlPivot04.html


KCM wrote:
I tried taking the field out, refreshing the data, dropping it back in, and
refreshing and it is still there. (Excel 2003)

"CrimsonPlague29" wrote:


Hello,

I have a primary sheet with all the data that is pulled into my pivot table,
but if I remove the data from the data range it still appears Data Field Drop
Down Menu of the pivot table, How can these sets of data be eliminated from
the pivot table with out completely recreating the table????

Thanks




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


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default Pivot Table Data-Deleted Data still appears

One quick fix would be to add this statement to your macro code:

Application.ScreenUpdating = False
Your code
Your code
Your code
Application.ScreenUpdating = True


This freezes the screen and causes the macro to run generally much
faster.
  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,979
Default Pivot Table Data-Deleted Data still appears

If you used the code for Excel 2002 and later versions
(DeleteMissingItems2002All), you only have to run it once in the
workbook. It doesn't have to be included in any code that updates the
pivot tables.
The MissingItemsLimit setting will stick, and old items will be cleared
automatically when the pivot table is refreshed.
However, to change the code so it only affects a specific pivot table,
you can use this:

Sub DeleteMissingItems_SpecificTable()
ActiveSheet.PivotTables("RegionPT").PivotCache _
.MissingItemsLimit = xlMissingItemsNone
End Sub


FredL wrote:
Hi Debra,

I've tried this and it works...except that my macro now takes 10 minutes to
complete (normally it's like 45 sec or so): there are 13 tabs each containing
5 pivot tables. Since my primary pivot in all the tabs are copies of 1 main
pivot, how would you code it such that only that main pivot gets cleared?
I'm not concerned about the other 4 pivots in each tabs.

Thanks,
Fred

"Debra Dalgleish" wrote:


There are instructions here for clearing old items from a pivot table:

http://www.contextures.com/xlPivot04.html


KCM wrote:

I tried taking the field out, refreshing the data, dropping it back in, and
refreshing and it is still there. (Excel 2003)

"CrimsonPlague29" wrote:



Hello,

I have a primary sheet with all the data that is pulled into my pivot table,
but if I remove the data from the data range it still appears Data Field Drop
Down Menu of the pivot table, How can these sets of data be eliminated from
the pivot table with out completely recreating the table????

Thanks


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





--
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
Pivot table blank cells show data deleted months ago! vcard Excel Discussion (Misc queries) 0 April 25th 06 09:25 PM
How do I restore original Pivot Table data? Andrew C Excel Discussion (Misc queries) 5 January 5th 06 06:21 AM
pivot table - New Data Allen Excel Discussion (Misc queries) 2 November 16th 05 03:15 AM
Help PLEASE! Not sure what answer is: Match? Index? Other? baz Excel Worksheet Functions 7 September 3rd 05 03:47 PM
Change Data In Pivot Table John Calder New Users to Excel 1 July 7th 05 10:41 PM


All times are GMT +1. The time now is 02:46 AM.

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

About Us

"It's about Microsoft Excel"