How about using:
MyFolderName = InputBox("Please type Client's Folder Name :")
MkDir "c:\data2\_Clients\" & Left(MyFolderName, 1) & "\" & MyFolderName
MkDir "c:\data2\_Clients\" & Left(MyFolderName, 1) & "\" &
MyFolderNameMyFolderName & "\Bills"
MkDir "c:\data2\_Clients\" & Left(MyFolderName, 1) & "\" &
MyFolderNameMyFolderName & "\Documents"
MkDir "c:\data2\_Clients\" & Left(MyFolderName, 1) & "\" &
MyFolderNameMyFolderName & "\Correspondence"
Note that you use the ampersand to concatenate the string, not the +

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I have written the following code
> Sub ClientFolder()
[quoted text clipped - 18 lines]
>
> Thanks
JayM - 11 Jan 2006 07:40 GMT
What a superstar!
That works perfectly
Thanks for your help
> How about using:
>
[quoted text clipped - 31 lines]
> >
> > Thanks