Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all
XL2003 I have been looking for a "sensible" way to delete a pivot table in my workbook but to no avail. Currently here is below what I use, can someone supply a better method? ThisWorkbook.Sheets("Data").Activate ActiveSheet.PivotTables(1).PivotSelect "", _ xlDataAndLabel, True Selection.Clear TIA Zic |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can use the TableRange2 property:
ActiveSheet.PivotTables(1).TableRange2.Clear Zic wrote: Hi all XL2003 I have been looking for a "sensible" way to delete a pivot table in my workbook but to no avail. Currently here is below what I use, can someone supply a better method? ThisWorkbook.Sheets("Data").Activate ActiveSheet.PivotTables(1).PivotSelect "", _ xlDataAndLabel, True Selection.Clear -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you Debra this works a treat!
Zic "Debra Dalgleish" a écrit dans le message de ... You can use the TableRange2 property: ActiveSheet.PivotTables(1).TableRange2.Clear Zic wrote: Hi all XL2003 I have been looking for a "sensible" way to delete a pivot table in my workbook but to no avail. Currently here is below what I use, can someone supply a better method? ThisWorkbook.Sheets("Data").Activate ActiveSheet.PivotTables(1).PivotSelect "", _ xlDataAndLabel, True Selection.Clear -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
trying to delete a row in the pivot table for the pivot chart | Excel Discussion (Misc queries) | |||
Delete Pivot Table Formula | Excel Discussion (Misc queries) | |||
Delete some substotal in a pivot table | Excel Discussion (Misc queries) | |||
how to delete/clean out the row list in pivot table | Excel Worksheet Functions | |||
Delete Pivot Table | Excel Programming |