How to clear recent document lists from Excel?
The recent opened workbook lists will be stored in the Recent pane when we open an Excel file each time as following screenshot shown. But, sometimes, you need to clear such long boring workbook lists from the Recent pane. This article will show you how to make the recent document lists disappear.
Clear the recent document lists with Options feature
Clear the recent document lists with Clear unpinned Workbooks function
Clear the recent document lists with VBA code
Clear the recent document lists with Options feature
To remove the recent document lists in Excel, you can go to the Excel Options to do a little setting. Please do as follows:
1. Open a workbook, and go to click File > Options (In Excel 2007. Click Office button > Excel Options), and in the Excel Options dialog box, please click Advanced from the left pane, and then scroll down to the Display section and change the number to 0 besides the Show this number of Recent Documents text box. See screenshot:
2. Then click OK to close this dialog, and now when you go the Recent pane, all the recent document lists have been cleared at once, see screenshots:
![]() |
![]() |
![]() |
Note: If you want to restore the recent items, you can type the number back to the Show this number of Recent Documents text box in the Excel Options dialog.
Clear the recent document lists with Clear unpinned Workbooks function
You can also remove all the recent document lists by applying the Clear unpinned Workbooks feature.
1. Go to the recent document lists by clicking File > Recent in Excel 2010, or click File > Open > Recent Workbooks in Excel 2013.
2. Then in the Recent Workbooks list, right click and choose Clear unpinned Workbooks from the context menu, see screenshot:
3. And a prompt box will pop out to remind you if you want to remove all the unpinned items from the list, click Yes button, and all the unpinned recent workbooks will be cleared at once.
Notes:
1. After removing the recent document lists, they are not restored any more, and this method is only applied to Excel 2010, 2013.
2. This method only remove the unpinned files.
Clear the recent document lists with VBA code
The following VBA code can help you to remove all the recent document lists immediately as well.
1. Press the ALT + F11 keys together, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
VBA code: remove the recent document lists
Sub Clearrecentfiles()
'Update 20140925
On Error Resume Next
Do Until Err.Number <> 0
Application.RecentFiles.Item(1).Delete
Loop
End Sub
3. Then press F5 key to run this code, and all the recent document lists have been removed at once.
Note: With this code, the recent document lists cannot be restored.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!







