Quote Originally Posted by Eastwick View Post
I have code that takes the contents of a userform (textboxes and listbox values) and inserts those values into the bookmarks of my .dotm template. It also inserts text from specified files based upon checkbox selections. All of that works fine but I am stumped by the SaveAs2 code that finalises the project.
Why would you be modifying the template instead of creating a new document from it (via Documents.Add) and updating that?

Unless prName includes the .docx extension, it seems to me all you need is:
ActiveDocument.SaveAs2 FileName:="CurDir" & "DRAFT_RFQ_" & prName & ".docx", FileFormat:=wdFormatXMLDocument, AddToRecentFiles:=False