Thread
:
Create folders on a shared drive with a macro
View Single Post
#
2
Posted to microsoft.public.excel.programming
William[_2_]
external usenet poster
Posts: 227
Create folders on a shared drive with a macro
Hi Michael
Sub test()
Dim x As String
x = "R:\MyExistingFolder\" & Range("A1")
On Error Resume Next
MkDir x
End Sub
--
XL2002
Regards
William
"Michael McClellan" wrote in message
om...
| I would like a macro that would create a folder on one of our shared
| drives and would name this folder based on what is in one of the cells
| in the current worksheet. Does anyone have a clue how to do this?
| Any help is appreciated.
Reply With Quote
William[_2_]
View Public Profile
Find all posts by William[_2_]