Is it possible to create a new directory using VBA?
P Pete_UK Jun 22, 2006 #2 Yes, if it is a subdirectory of the current directory you just need: MkDir (my_name) where my_name is a string variable. This could include the full path to create the directory somewhere else. Hope this helps. Pete
Yes, if it is a subdirectory of the current directory you just need: MkDir (my_name) where my_name is a string variable. This could include the full path to create the directory somewhere else. Hope this helps. Pete