Written by Allen Wyatt (last updated April 4, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
VBA provides a very rich programming environment. You can do many things with macro code that you cannot necessarily do using the tools provided on Excel's ribbons. For instance, you may want to change the current directory in the middle of a macro. This may be necessary in order to find a particular file or to do some other file-oriented task. VBA provides the ChDir command to change directories. The syntax is as follows:
ChDir DirName
where DirName is the full pathname of the directory to which you want to change. If you do not use a string variable to specify the directory name, then DirName must be enclosed in quotes. If the directory name you supply does not exist, the command fails with an error.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8804) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Changing Directories in a Macro.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Excel allows you to define names that can refer either to ranges of cells or to constant information, such as formulas. ...
Discover MoreNeed to know how many characters there are in a workbook? You can find out easily with the handy macro introduced in this ...
Discover MoreMacros are often used to process the data stored in a worksheet. Some of these processing needs can be pretty specific to ...
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