How do I edit my code to paste with a blank column between each paste? This is from a loop of each filter and pasting to another sheet. The code below works but it starts at C column when I want it to start at B.
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
n = nWhat is that line for ? Also theWithis doing nothing, maybe you meantSet shtcopy = .Sheets("Summary Copying")andSet shtpaste = .Sheets("Summary")