2011-06-14 54 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) 
相關問題