J
JayM
I have written the following code
Sub ClientFolder()
' New Client Folder Creation
Dim MyFolderName
MyFolderName = InputBox("Please type Client's Folder Name :")
MkDir "c:\data2\_Clients\" + MyFolderName
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Bills"
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Documents"
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Correspondence"
End Sub
I want to be able to check the first letter of MyFolderName and then move
that folder into c:\data2\_Clients\A (or B or C etc) dependent on what the
initial letter is thereby having 26 folders (A thru' Z) to alphabetically
list all clients
Any help would be greatly appreciated
Thanks
Sub ClientFolder()
' New Client Folder Creation
Dim MyFolderName
MyFolderName = InputBox("Please type Client's Folder Name :")
MkDir "c:\data2\_Clients\" + MyFolderName
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Bills"
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Documents"
MkDir "c:\data2\_Clients\" + MyFolderName + "\" + "Correspondence"
End Sub
I want to be able to check the first letter of MyFolderName and then move
that folder into c:\data2\_Clients\A (or B or C etc) dependent on what the
initial letter is thereby having 26 folders (A thru' Z) to alphabetically
list all clients
Any help would be greatly appreciated
Thanks