Try.
sub copypaste ()
Sheet1.Activate
Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
Sheet4.Activate
Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
Sheet2.Activate
Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
Sheet4.Activate
Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
Sheet3.Activate
Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
Sheet4.Activate
Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
End Sub
Bookmarks