Dim wkbkdestination As Workbook
Dim destsheet As Worksheet
For Each ThisWorkSheet In wkbkorigin.Worksheets
Set destsheet = wkbkdestination.Worksheets(ThisWorkSheet.Name) ' this throws subscript out of range if there is not a sheet in the destination workbook that has the same name as the current sheet in the origin workbook.
Next
Basically I loop through all sheets in the origin workbook then set destsheet in the destination workbbok to the sheet with the same name as the currently iterated one in the origin workbook.
how can i test if that sheet exists, something like??:
If wkbkdestination.Worksheets(ThisWorkSheet.Name) Then
