I have a code that creates a new folder to a specific pathway but the issue is now we need to be able to allow the user to define the pathway (location changes weekly and by user). I can't figure out how to get it to allow me to let the user pick where to create the folder.
Current Code:
Sub FolderCreation
FolderName = Format(Date, "yyyy-mm-dd")
MkDir "W:\WAC\Regional\WA_OnTap\Team\XH Customer Letters\Sent Letters" & FolderName
End Sub
Thanks!
Current Code:
Sub FolderCreation
FolderName = Format(Date, "yyyy-mm-dd")
MkDir "W:\WAC\Regional\WA_OnTap\Team\XH Customer Letters\Sent Letters" & FolderName
End Sub
Thanks!