![]() |
Remove all column and row fields from a pivot table
I know how to add a field (see below) to a pivot table, but from a
state where I don't know which columns and rows are added to the pivot table, how can I "reset" the pivot table so I can add only the fields I'm interested in? Sheet1.PivotTables("PivotTable8").AddFields RowFields:="Customer", _ ColumnFields:="CloseQuarter" With Sheet22.PivotTables("PivotTable8").PivotFields("Sa les") .Orientation = xlDataField .Function = xlSum .Position = 1 End With |
Remove all column and row fields from a pivot table
Hi Takuto
This will remove all the items in your pivot table so you have a blank table. Ready to populate with new information. Take care Marcus Sub RemovePTItems() 'Removes all items in pivot table Dim pt As PivotTable Dim i As Integer Set pt = ActiveSheet.PivotTables(1) i = pt.PivotFields.Count For Count = 1 To i On Error Resume Next pt.PivotFields(Count).Orientation = xlHidden Next Count End Sub |
All times are GMT +1. The time now is 01:40 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com