I have a folder for each month. I would like to save our current proposal to the folder by it's month.
There is a cell ("N10") which contains the date we wrote the proposal. Is there code I could write to have it save to the proper folder? I can change the names of the folder if it makes it easier.
Here are the Folders I have right now:
These folders are in path (C:\WINDOWS\Personal\Completed Proposals\)
1January2004
2February2004
3March2004
4April2004
5May2004
etc.
Here is code I have right now:
Path = "C:\WINDOWS\Personal\Completed Proposals\"
Path2 = "C:\WINDOWS\Personal\Surface Systems\"
ActiveWorkbook.SaveAs Filename:= _
Path & "Proposal " & _
Str(Application.Range("N2").Value), FileFormat:=xlNormal _
, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False
Appreciate any help in addvance!
Michael
