Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and 2021. 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: Grabbing the MRU List.

Grabbing the MRU List

Written by Allen Wyatt (last updated January 8, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021


1

Word allows you to maintain a list of the most-recently used (MRU) files. This list can record the names of the most recently opened and edited within Word. You can see the MRU list by clicking the Office button (in Word 2007), clicking the File tab of the ribbon and then Recent (in Word 2010), or clicking the File tab of the ribbon and then Open (in later versions of Word).

If you want to grab the names of the MRU files and insert those names in a document, you can use the following VBA macro:

Sub MostRecent()
    Dim r as RecentFile

    For Each r in RecentFiles
        Selection.TypeText Text:=r.Name
        Selection.TypeParagraph
    Next r
End Sub

The macro accesses each member of the RecentFiles collection, adding the name of each member to the document.

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 (13360) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Grabbing the MRU List.

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

Word Won't Capitalize Some Sentences

By default, Word capitalizes the first letter of sentences as you type. If you notice that Word doesn't capitalize some ...

Discover More

Style Names Can Affect Style Definitions

Most people think that you can name styles almost anything you want. You can, but there may be some unintended ...

Discover More

Changing the MAC Address for a Network Adapter

MAC addresses are used to uniquely identify devices on your network, such as a network adapter. Here's how you can modify ...

Discover More

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!

More WordTips (ribbon)

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

Inserting a File Name without an Extension

Sometimes you might like to insert a file name into your document without including the file extension. The FILENAME ...

Discover More

Formatting Text Files with VBA

Got a bunch of text that you've imported from a text file? Need to make it look better? You can take a stab at it with ...

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 nine more than 1?

2025-01-08 10:19:49

Beepee

Hi.
I'm still a bit of a novice when it comes to Word VBA.
I've used the above macro (Word 2019) - just fine, thank you (again) Allen.
I started with a long list (50 items) and discovered I can reduce this in the File>Options>Advanced>Display>Show this number of Recent Documents...
I also modified macro to list files each with a number:
Sub MostRecent() 'list recently used Files in current document
Dim r As RecentFile
Dim n As Integer
n = 1
For Each r In RecentFiles
Selection.TypeText Text:=n & " "
Selection.TypeText Text:=r.Name
Selection.TypeParagraph
n = n + 1
Next r
End Sub
What would be really handy is to add the associated date after the file name - but I've been unable to achieve this!
Any help would be much appreciated.
Thanks
B


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.