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: Using a Standard Format in a Suggested File Name.

Using a Standard Format in a Suggested File Name

Written by Allen Wyatt (last updated August 29, 2020)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365


2

Richard asked if there was a way to modify the Word-generated file name that is suggested when you choose Save As or, in the case of a brand-new document, click the Save tool. He wants to suggest a standard file name that contains the date as the prefix for that name.

There are actually two different concepts at work here, depending on whether you are working on a new document or an existing document. If you are working with an existing document, then the file name suggested when you click on Save As is actually the document's current file name.

If you are working with a new document, then there is no functional difference between choosing Save or Save As; they both pull up the Save As dialog box. In this case, the suggested file name is based on the setting of the Title field in the Properties dialog box. If there is nothing in the Title field, then the suggested title is based on the first line of text in the file, up to the first punctuation mark.

Given the way that Word comes up with the suggested names, there are a couple things that can be done to utilize a standard. The first is to modify the template used for the documents, so that the Title field is set in it. For instance, follow these steps:

  1. Load Normal.dot or the template you want to modify.
  2. Display the Properties dialog box for the file. If you are using Word 2007, click the Office button | Prepare | Document Properties and then use the Document Properties drop-down list to choose Advanced Properties. If you are using Word 2010 or a later version, display the File tab of the ribbon and click Info (on the left side of the window) then click Properties | Advanced Properties.
  3. Make sure the Summary tab is displayed. (See Figure 1.)
  4. Figure 1. The Summary tab of the Properties dialog box.

  5. In the Title field, enter the pattern you want used for file names. For instance, you might enter "yyyymmdd - Title".
  6. Click OK.
  7. Save and close the template.

Now, whenever you open a document based on that template, the Title field will already be set. When someone first saves the document, the title you entered in step 4 is suggested. This will spur the user to replace "yyyymmdd" with the proper date and replace "Title" with the real title.

If you want something more automatic—perhaps where the date is automatically filled in—then you need to rely on a macro. You essentially need to create a macro that replaces the Save and Save As commands and fills in the suggested file name as you want it done. Information on how to intercept various commands (such as Save and Save As) can be found at the Word MVP Web site:

https://wordmvp.com/FAQs/MacrosVBA/InterceptSavePrint.htm

In the macro you create, you can set the desired name before showing the File Save As dialog box. For instance, this snippet of code will handle the trick:

Dim sDefaultFileName as String
sDefaultFileName  =  "MyPaper"
With Application.Dialogs(wdDialogFileSaveAs)
    .Name = sDefaultFileName
    .Format = 0     '2 = Plain Text, 0 = Word Doc
    If .Show = 0 Then   'User did not save
    End If
End With

Remember that this code needs to be placed within a larger macro that you develop as a replacement for the Save As command. The .Show method is what actually displays the dialog box.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13283) 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: Using a Standard Format in a Suggested File Name.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Changing Sort Order

When sorting information, Word follows some pretty strict rules. If you want to modify how those rules are applied, you ...

Discover More

Counting Filtered Rows

The filtering capabilities of Excel are indispensable when working with large sets of data. When you create a filtered ...

Discover More

Getting Rid of Hidden Text in Many Files

Hidden text is a great boon if you want to make sure something doesn't show up on the screen or on a printout. If you ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (ribbon)

Viewing Files of a Certain Type

When you choose to open a file, Word normally displays only those files that end with the .DOCX or .DOCM extensions. If ...

Discover More

Importing a Text File and Inserting after a Bookmark

Word macros are a great way to automate some of the ways in which you create documents. If you have a need to insert the ...

Discover More

Opening a Backup File

If you have Word configured to save backup copies of your document, you may want to actually load one of those copies at ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 - 0?

2020-09-16 04:57:52

Richard

I discovered this feature of the title property when creating a PDF from a Word document, and then viewing that in Adobe Reader. I couldn't understand why the PDF filename was showing as 'word template 1625', until I realised that the template author had preloaded the title property.


2020-09-01 08:04:53

Simon Jones

As well as putting a default/prompt string into the Title property, I make templates for things like Reports, etc which have the Title property shown as a Building Block on the first page of the Report and in the Header. This makes it even easier for the user to name the document correctly, as they are just typing in the right place on the first page.


This Site

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.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.