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