Hi, Guirg,
maybe test like this:
With wbS.Sheets("Sheet1")
LastRow = .Cells(.Rows.Count, 1).End(xlUp).Row + 1
.Cells((LastRow), 1).PasteSpecial
End With
Or even
With wbS.Sheets("Sheet1")
LastRow = .Cells(.Rows.Count, 1).End(xlUp).Row + 1
.Cells((LastRow)...