How to save a new word document based on a custom template in a specific folder?

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,761
Office Version
  1. 365
Platform
  1. Windows
As far as I know, the are only two ways to create a new document based on a custom template. I can click on File > New in a Word document that is already open. Or I can double click the template itself in the template folder. But either way, when I go to save the document the default folder is OneDrive.

Suppose I want to create several new Word documents, all based on the same custom template, and save them all in a specific folder. Suppose, for example, that I want to send my resume to a number of different possible employers and I want to create cover letters to go with them. Is there any way that I can do something in that folder to create a new Word document based on a specific custom template and have the default save location be that folder?

Thanks

PS: Is this a good place to ask questions about Word? This forum is the gold standard for questions about Excel, and I see it has a section for Access, but not one for Word. If this is not the best place, is there a better place?

PPS: I am running Office 365 on Windows 11
 
When I click on File > New in a Word document, Word let me choose a template. Is there any way to get it to do the same thing when I right-click in a folder and select New > Word document? On my system, it currently creates a Word document based on the Normal.dotx template.
 
Upvote 0
I just realied I'd been omitting part of the code!
VBA Code:
If InStr(ActiveDocument.Name, ".do") > 0 Then ActiveDocument.Save
should be:
VBA Code:
If InStr(ActiveDocument.Name, ".do") > 0 Then ActiveDocument.Save: Exit Sub
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top