G Guest Oct 18, 2007 #1 Is there a way to execute a DOS command (i.e. MD, CD...etc) from a from. Thanks, Fred
D Douglas J. Steele Oct 18, 2007 #2 VBA has the equivalent of MD and CD built into it. MkDir lets you make a directory. CurDir tells you the current directory. ChDir lets you change the current director (you'll need to use ChDrive if you're trying to set a the current directory to a different drive).
VBA has the equivalent of MD and CD built into it. MkDir lets you make a directory. CurDir tells you the current directory. ChDir lets you change the current director (you'll need to use ChDrive if you're trying to set a the current directory to a different drive).