I just had time to get back to this... If anyone's interested, I got it to work:
Sub Copy_Sheet_With_Pivot_Table_Formatting()
Dim SrcSheet As Worksheet
Dim DestSheet As Worksheet
Dim Pt As PivotTable
Dim PtCol As Integer
Dim PtRow As Integer
Set SrcSheet = ActiveSheet
Cells.Select
Selection.Copy
Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Paste
Application.CutCopyMode = False
Set DestSheet = ActiveSheet
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
SrcSheet.Select
For Each Pt In SrcSheet.PivotTables
Pt.TableRange2.Copy
PtCol = Pt.TableRange2.Cells.Column
PtRow = Pt.TableRange2.Cells.Row
DestSheet.Cells(PtRow, PtCol).PasteSpecial xlPasteFormats
Next Pt
Application.CutCopyMode = False
Cells(1, 1).Select
DestSheet.Select
Cells(1, 1).Select
End Sub
It looks a bit redundant, but the redundancy is necessary to copy all formats both inside and outside of pivot tables on a sheet that has both. Thanks to all who helped!
Bookmarks