Written by Allen Wyatt (last updated October 6, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
For some macros you may need to determine if there is a way to determine the particular machine on which the macro is operating. For instance, you may have a desktop PC that has a particular directory at D:\OraNT\Plus33, while your notebook PC has the directory at C:\OraNT\Plus33. The macro, of course, needs to detect which machine is in use so that it knows which directory to use for its processing.
There are different ways that this task can be approached. It is possible to create an Excel macro that actually accesses the Windows API and determines the name of the computer on which it is running. Such an approach can get quite involved, however.
An easier way is to just use VBA's DIR command to determine where the desired directory exists. The following will do the trick:
Sub OracleQueries() Dim sTemp As String Dim sGoodPath As String sGoodPath = "D:\OraNT\Plus33\" sTemp = Dir("D:\OraNT\Plus33\nul") If sTemp = "" Then sGoodPath = "C:\OraNT\Plus33\" sTemp = Dir("C:\OraNT\Plus33\nul") End If 'Now have directory information If sTemp <> "" Then 'Process queries using sGoodPath Else MsgBox "Directories not found!" End If End Sub
Notice how the DIR function is used in this example. Normally DIR returns the name of the first file it finds in the requested directory. If the directory is empty, however, DIR returns an empty string—even if the directory actually exists. Since all we want to do is find out if the directory exists (not if there are files in it), it is necessary to append the letters "nul" at the end of the directory path used by DIR. This causes DIR to return an empty string if the directory is not located, or else the characters "nul" if it is (even if the directory is empty).
Toward the end of the macro, sTemp will be empty if neither directory could be located. If one of them was located, then sTemp will not be empty, and sGoodPath will be set to the directory name that can be used in further processing.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2607) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Self-Aware Macros.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Need your macro to get some input from a user? The standard way to do this is with the InputBox function, described in ...
Discover MoreUnprotecting a single worksheet is relatively easy. Unprotecting a whole lot of worksheets is harder. Here's how you can ...
Discover MoreIf you have static columns and dynamic columns on the screen, you may want the dynamic columns to always show a ...
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 menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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