Sub From_One_Book_To_Another_Book()
Dim wb1 As Workbook, wb2 As Workbook
Dim shArr
Dim i As Long
Application.ScreenUpdating = False
shArr = Array("Sheet2", "Sheet4", "Sheet6", "Sheet8") '<----- Put all sheet names here
Set wb1 = ThisWorkbook '<---- wb to copy from
On Error Resume Next
Set wb2 = Workbooks("C:\Folder Name\Name of Workbook where you paste into.xlsm") '<---- Change to actual wb to paste into
If Err Then Set wb2 = Workbooks.Open("C:\Folder Name\Name of Workbook where you paste into.xlsm") '<---- Change to actual wb to paste into
On Error GoTo 0
For i = LBound(shArr) To UBound(shArr)
wb1.Worksheets(shArr(i)).UsedRange.Copy
wb2.Worksheets(shArr(i)).Cells(wb2.Worksheets(shArr(i)).Rows.Count, 1).End(xlUp).Offset(1).PasteSpecial xlPasteValues
Next i
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub