Quote Originally Posted by gmayor View Post
Save them in code after updating and before you close the userform
oDoc1.Save
oDoc2.Save
oDoc3.Save
Thank you. I played around a bit and set it up so that the text entered in the first name and last name field will create a sub folder to save the files.

newfol = TextBox1.Text & " " & TextBox2.Text
ChDir "C:\Users\amask\Desktop\userform"
On Error Resume Next
MkDir (newfol)

oDoc1.SaveAs "C:\Users\amask\Desktop\userform\Filename.docx"
oDoc2.SaveAs "C:\Users\amask\Desktop\userform\AnotherFilename.docx"
oDoc3.SaveAs "C:\Users\amask\Desktop\userform\Another1Filename.docx"

Just one more help if you can. What path should be given to save the document? Since the folder name is dynamic and can change, having something specific wont work?