Favorites and Recents Don't Show Up when Starting Excel

Written by Allen Wyatt (last updated June 7, 2025)
This tip applies to Excel Excel in Microsoft 365


1

When Simon opens Excel, the program asks what he wants to open. It displays three tabs (Recent, Favorites, and Shared with Me). The problem is that Simon doesn't always get the full list of favorites on the Favorites tab; he usually just gets a couple. When that occurs, then he also doesn't get all the recently opened workbooks listed on the Recent tab. Simon cannot see a pattern in how or when this occurs, and it is very annoying to him.

I'm going to assume that Simon is using Microsoft 365 because that is the version in which this behavior makes the most sense. Excel and all Office apps are tied to the cloud in Microsoft 365, meaning that information regarding your installation is stored in Microsoft's servers. If your installation of Microsoft 365 cannot access those servers, even intermittently, then you can have strange things occur.

What might cause the lack of access? Obviously, an unstable internet connection could do it, as could a flakey connection through servers between your system and Microsoft. This could be the result of latency issues somewhere in the connection chain, or perhaps latency issues introduced on your computer because of background tasks bogging down the system.

If you store files in OneDrive or on some other virtual drive, such as Dropbox, then the problem can be exacerbated. Excel may know which recents or favorites it should display, but if it cannot reach those files in the virtual drive, then it won't display them because it believes they are no longer available.

If you don't think the issue is related to your internet connection or background tasks on your system, you might try completely signing out of Microsoft 365, restarting your system, and signing back in. That may refresh the data necessary for your Microsoft 365 account and help make things run smoother.

If that still doesn't help, consider clearing the file cache used by Excel. Navigate to the following folder:

C:\Users\username\AppData\Local\Microsoft\Office\16.0\OfficeFileCache

In this path, the "username" should be replaced with the name of your user account. Anything in the folder can be deleted. You should also realize that the cache is used by other programs in the Office suite, as well. Anything you delete from the folder will be automatically rebuilt the next time you start Excel (or other Office app).

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11489) applies to Microsoft Excel Excel in Microsoft 365.

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

Turning Off Hyperlink Activation

Does it bother you when you enter a URL and it becomes "active" as soon as you press Enter? Here's how you can turn off ...

Discover More

Adding Addresses To a Set of Address Labels

Got a bunch of pages labels and you need to insert a label into the middle of the bunch? This isn't easy to do in Word, ...

Discover More

Filtering to a Date Range in the Past

If you have a large number of data records, each with an associated date, you might want to filter that data so you see ...

Discover More

Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!

More ExcelTips (ribbon)

Limiting Where a Workbook is Used

Want to limit who can use your workbook and on what system? Locking down a workbook can be trickier than you might imagine.

Discover More

Sudden Increases in Workbook File Size

Workbooks can get rather large rather quickly. If you think your workbook has gotten too big too fast, here are some ...

Discover More

Comparing Workbooks

Do you need to compare two workbooks to each other? While you can use specialized third-party software to do the ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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 9 - 7?

2025-06-09 17:29:14

J. Woolley

Using VBA, Excel's list of recent files is in the following collection:
    Application.RecentFiles
Each item in that collection is a RecentFile object. A malicious macro could randomly delete items from the collection using a statement like this
    Application.RecentFiles.Item(i).Delete
Such a macro might run each time a workbook is opened.
The following statement is supposed to add the active workbook to the "Favorites" folder:
    ActiveWorkbook.AddToFavorites
I tried it, but it doesn't seem to do anything (Windows 11, Excel 365).
I don't know how to access Excel's list of favorites using VBA.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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.