Written by Allen Wyatt (last updated January 18, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
If you need to, you can create a disk-drive directory (folder) using VBA. This is done with the MkDir command and is a remnant from the same command in earlier versions of BASIC. The syntax is:
MkDir DirName
where DirName is the full pathname of the directory you want to create. If you do not use a string variable to specify the directory name, then DirName must be enclosed in quotes. Further, if you don't provide a full pathname in DirName (perhaps you provide only a simple name like "TempFiles" or "MyDirectory"), then the directory is created in the current directory. Finally, if you try to create a directory that already exists, VBA will generate an error.
There is one potential gotcha you need to be aware of: You cannot create multiple levels of directories in a single go. For instance, let's say you have an existing directory called "Budget" on the C: drive, and you try to create the following:
sTemp = "C:\Budget\2025\First Quarter" MkDir sTemp
You may get an error if the 2025 directory doesn't already exist within the Budget directory. To avoid such an error, you need to build each directory level explicitly, as in this manner:
sTemp = "C:\Budget\2025" MkDir sTemp sTemp = sTemp & "\First Quarter" MkDir sTemp
Why would you want to create a directory in your macro? One common reason is to create a place where you can store temporary files you are working with in the rest of the macro.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8851) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Creating a Directory in a Macro.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
Want to step through the worksheets in a workbook, displaying them like a slideshow? The macros provided in this tip can ...
Discover MoreWhen you enter information into a workbook, Excel automatically recalculates every worksheet in every open workbook on ...
Discover MoreWhen working with text in Excel, you can slice and dice it in many ways. This tip shows how to pull first letters from ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, 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 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 © 2025 Sharon Parq Associates, Inc.
Comments