简体   繁体   中英

Create newdocument with saveAs2 fails

I am trying to create a new document from another document, however it fails:

在此处输入图片说明

Set createDocOutDocument = createDocOutDocument.SaveAs(fileName:=docOutname)

SaveAs doesn't return anything, and in any case you'd just be getting a reference to the same document already referenced by createDocOutDocument

All you need here is:

createDocOutDocument.SaveAs(fileName:=docOutname)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM