2011-06-14 6 views

답변

2

미리 정의 된 템플릿 시트를 사용하여 복사합니다

Dim wb as Workbook 
Set wb = '... (set the workbook here where you want your new sheet to be copied) 
ThisWorkbook.Sheets("NameOfYourTemplate").Copy _ 
    after:=wb.Sheets(wb.Sheets.Count) 
관련 문제