0
我正在嘗試將工作表另存爲新的工作簿,但這樣做時初始工作簿的自定義屬性未被繼承。工作表另存爲不繼承工作簿自定義屬性
' Set the workbook properties
ActiveWorkbook.CustomDocumentProperties.item("customProp1") = variableOne
ActiveWorkbook.CustomDocumentProperties.item("customProp2") = variableTwo
' Save the worksheet as a new workbook
Worksheets("Sheet1").SaveAs FileName:=documentName
ActiveWorkbook.Close SaveChanges:=True
我已經進行了大量搜索,找不到解決方案。
謝謝,