Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I wrote a macro to split out the active pivot table to individual file
by different pivot field. I don't how can I change it to split out all pivot table on active workbook, because in this workbook have 7 sheet, each sheet have 1 pivot table. I need to save as individual file with all pivot table by different pivot field. (e.g. All Sheet include Name A to save as individual workbook), Who can help me? Here is my existing code Sub SavePTMacro() Dim i As Integer Dim j As Integer Dim pt As PivotTable Dim pf As PivotField Dim myB As Workbook With ActiveSheet.PivotTables("PivotTable1").PivotFields ("Name") For i = 1 To .PivotItems.Count .PivotItems(i).Visible = True For j = 1 To .PivotItems.Count If j < i Then .PivotItems(j).Visible = False Next j ActiveSheet.Cells.Copy Set myB = Workbooks.Add myB.Sheets(1).Paste Set pt = myB.Sheets(1).PivotTables(1) For Each pf In pt.PivotFields pf.EnableItemSelection = False Next pf myB.SaveAs ThisWorkbook.Path & "\" & ActiveSheet.Name & "_" & .PivotItems(i).Name & ".xls" myB.Close False Next i End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how can i include new add data on my pivot table | Excel Discussion (Misc queries) | |||
how can i include new add data on my pivot table | Excel Discussion (Misc queries) | |||
How to make a field created a part of the Pivot Table Field List? | Excel Discussion (Misc queries) | |||
Have a Pivot Table Include a "% of an item" | Excel Worksheet Functions | |||
Pivot Table - Multiple Pivot Field Selection | Excel Programming |