시트가 있는지 테스트 또는 확인 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대상 통합 문서..