Dim wkbkdestination As Workbook
Dim destsheet As Worksheet
For Each ThisWorkSheet In wkbkorigin.Worksheets
'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.
Set destsheet = wkbkdestination.Worksheets(ThisWorkSheet.Name)
Next
基本的に、元のワークブックのすべてのシートをループしてから設定します destsheet
現在反復されているシートと同じ名前のシートを、ターゲットのワークブックにします。
そのシートが存在するかどうかをどのようにテストできますか?何かのようなもの:
If wkbkdestination.Worksheets(ThisWorkSheet.Name) Then