J
Jeremy
Thanks to everybody for the help, still have one outstanding issue that I
cannot figure out:
- My file is an invoice template for users to fill out
- The first text box with a bookmark around it is for the user to punch in
the invoice number.
- Below I've included the code that I'm using for them to click which
automatically saves the file to a designated path
- Now I just need to find a way to grab the data they enter into the invoice
number field, and use that to save the file as invoicenumber.doc.
- How do I edit my save macro to do this?
- Here is what I have so far:
Sub save()
'
' save Macro
' Macro created 6/5/2005 by Jeremy
'
ActiveDocument.SaveAs "C:\invoices\new invoices\"
UserForm1.Show
End Sub
cannot figure out:
- My file is an invoice template for users to fill out
- The first text box with a bookmark around it is for the user to punch in
the invoice number.
- Below I've included the code that I'm using for them to click which
automatically saves the file to a designated path
- Now I just need to find a way to grab the data they enter into the invoice
number field, and use that to save the file as invoicenumber.doc.
- How do I edit my save macro to do this?
- Here is what I have so far:
Sub save()
'
' save Macro
' Macro created 6/5/2005 by Jeremy
'
ActiveDocument.SaveAs "C:\invoices\new invoices\"
UserForm1.Show
End Sub