Written by Allen Wyatt (last updated April 4, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
David needs two workbooks automatically opened when he starts Excel. He put the two workbooks in a folder and then entered the path to that folder in the Advanced tab of the Excel Options dialog box, under the General section. Excel won't load the files, however. He gets no messages; Excel just opens a blank workbook. David wonders how he can get Excel to open the two workbooks he needs.
The important thing to understand is that Excel actually has two places where you can place workbooks that you want opened when Excel starts. One place has already been identified by David; the other place is what is referred to as the XLSTART folder. The path to the folder depends on your version of Excel, but you should be able to always get to it by using this path:
%appdata%\Microsoft\Excel\XLSTART
This is a set location, never varying from system to system. (Though the full path varies by version.) This differs from the "At startup, open all files in" setting that David mentioned. With two startup locations, though, the natural question is how these locations differ.
Honestly, there isn't much difference, other than one is automatic (XLSTART) and the other requires a configuration setting. It is this difference, though, that can be crucial. When setting the "At startup, open all files in" path, there can be issues if:
In cases such as this, Excel will not issue a warning or error notice; it just bypasses loading and displays a blank workbook, as David is seeing. Because XLSTART is in a known location, issues related to path specifications do not occur; if a workbook is in the XLSTART folder, it is always loaded.
There are some guidelines that should be followed regardless of whether you are using the XLSTART folder or another folder ("At startup, open all files in"):
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13972) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
Ever want to see a list of all the workbooks that are open? If you open more than nine, Excel only displays the first ...
Discover MoreIf you save a workbook and then immediately close the workbook, Excel may ask you to save again. This tip looks at ...
Discover MoreWhen you save a workbook, you have the opportunity to save a thumbnail image that can be displayed within Windows. Here's ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-04-05 10:46:55
jamies
Tomek,
Thanks for the detailed information
2026-04-05 01:46:48
Tomek
This tip provides a solution that David asked for, but is it really what he wants? The files in the specified locations will always open when you start Excel, even if you want to open only a specific file by double-clicking on it in File Explorer. I think a better solution is to go to the directory with all the files you want to open, selecting them, and then opening them by right-click->open or just pressing <ENTER>. This will do what David wanted only when he wants it, not every time. You can also create a batch file that will open any specified files. The syntax for such file is a bit tricky: you cannot just use a command line withe the file name - this will open the first file and wait until you finish with it and close Excel. You have to use START command. An example of a batch file to open all .xlsm files in E:\Temp folder is shown below. Make sure to keep all quotation marks:
E:
cd \Temp
for %%a in (*.xlsm) do start "" "%%a"
or to open specified files :
E:
cd \Temp
start "" "File 1.xlsm"
start "" "File 2.xlsx"
2026-04-05 01:27:43
Tomek
There are actually two XLSTART locations: User Startup and Excel Startup, that can be identified by looking in Trusted Locations:
(Excel Options- >Trust Center ->Trusted Locations).
The former is user specific the other most likely applies applies to all users.
All files in these locations will load when starting Excel, in addition to files in path that David mentioned.
2026-04-04 11:01:26
jamies
And BEWARE of files with "Excel" created names such as Book1.xlsx being on the Desktop !
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments