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:
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 Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Grabbing the MRU List.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Word has the capability to save your work, in the background, while you continue to edit your documents. This tip ...
Discover MoreWhen you are using Word, it normally saves temporary AutoRecover files that reflect the latest state of your document. If ...
Discover MoreDon't you love all the acronyms used in computer terminology? One such acronym--"pertinent to Word users--"is MRU. This ...
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 © 2022 Sharon Parq Associates, Inc.
Comments