Hi,
I am using Excel 2010, and have a basic understanding if VBA.
I have found a piece of code that allows me to set my print range to just print the pivot table on the page, which works fine.
With ActiveSheet
.PageSetup.PrintArea = .PivotTables(1).TableRange2.Address
End With
However, I...