Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Setting a Document Naming Convention.
Written by Allen Wyatt (last updated June 13, 2023)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
Michelle is a solo lawyer trying to develop a paperless office. One important factor is a document naming convention to help her organize and locate documents. Michelle would like to save all documents starting with the date YYYY_MM_DD to which she would add relevant client information. She wonders if there is a way to create a default for Word so that when she saves a new document, it automatically starts with the current date.
There are a few approaches you can take to handle this problem. Most of the solutions involve using a macro in one way or another. Perhaps the easiest macro-based approach is to make some modifications to the FileSaveAs command. This is the command that Word executes whenever you choose Save As (pressing F12 is the easiest way to do this) or whenever you click the Save button on the toolbar with a brand-new document.
Public Sub FileSaveAs() Dim dlgSave As Dialog Set dlgSave = Dialogs(wdDialogFileSaveAs) With dlgSave .Name = Format(Date, "yyyy_mm_dd ") .Show End With End Sub
This macro is quite simple in concept: It simply puts the current date (in the desired format) into the Save dialog box and then shows the dialog box. In this way, the person can then add whatever "relevant client information" is desired after that date.
Another approach to put the current date into the Save As dialog box is to rely on the fact that Word, by default, uses the contents of the Title field in the document properties as the default filename. You can use fields to update the contents of the Title field. This means that you can follow these general steps:
Public Sub AutoNew() Application.ScreenUpdating = False ActiveDocument.Bookmarks("infotitle").Range.Fields.Update ActiveDocument.Bookmarks("infotitle").Range.Delete Application.ScreenUpdating = True End Sub
Remember that in performing step 2, the way you insert field braces is to press Ctrl+F9. The field (which is updated in the AutoNew macro) fetches the current date, in the format specified, and places it into the Title field of the document properties. The macro, after updating the field (and thereby setting the Title field), then deletes the field from the document itself.
The result is that when someone goes to save the document for the first time, Word grabs the contents of the Title field and uses it as the suggested filename for the document. The user can then add whatever "relevant client information" is desired after the date.
If you'd rather not mess with macros at all and you are open to other ways to save your document—besides starting with a date—you may want to visit Graham Mayor's site and take a look at a free add-in that allows you to save numbered versions of document:
https://www.gmayor.com/SaveVersionsAdd-In.htm
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11619) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Setting a Document Naming Convention.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!
Word allows you to save your documents in a variety of different formats. You can specify the format when you actually ...
Discover MoreYou may be surprised sometimes to save a document and find out that Word actually saves what appear to be two copies of ...
Discover MoreBreaking document links can be a tedious chore, especially if there are lots of links and lots of documents. This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments