Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can some one help me determine the sheet name that each pivot table is located
I'm using the code below thanks Sub ListPivotTablesNSource() Dim PT As PivotTable Dim Sh As Worksheet Dim lSh As Worksheet 'Loop Sheet Set Sh = Worksheets.Add Sh.Range("A1") = "Pivot Table Name" Sh.Range("B1") = "Pivot Table Source" Sh.Range("C1") = "Pivot Table Location" For Each lSh In ActiveWorkbook.Worksheets For Each PT In lSh.PivotTables With Sh.Range("A" & Sh.Rows.Count).End(xlUp) .Offset(1, 0) = PT.Name .Offset(1, 1) = PT.SourceData End With Next Next Columns("A:B").EntireColumn.AutoFit End Sub -- Helping Is always a good thing |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot Table from multiple sheets? | Excel Discussion (Misc queries) | |||
Pivot Table with Multiple sheets | Excel Worksheet Functions | |||
suppress warning and locate cube in a pivot table from olap cube | Excel Discussion (Misc queries) | |||
pivot table to sheets | Excel Worksheet Functions | |||
multiple sheets into 1 pivot table | Excel Programming |