How can I change my code such that a blank column appears between pastes? This was pasted onto a different sheet after looping each filter. The code below is functional, however, it should start in column B, not C.
Set shtcopy = Sheets("Summary Copying")
Set shtpaste = Sheets("Summary")
shtcopy.PivotTables
pt.TableRange1.Copy
shtpaste.Cells(10, Columns.Count).End(xlToLeft).Offset(, 2).PasteSpecial Paste:=xlPasteValues
shtpaste.Cells(10, Columns.Count).End(xlToLeft).Offset(, -4).PasteSpecial Paste:=xlPasteFormats
shtpaste.Cells.Columns.AutoFit