[/FONT]
[FONT=Courier New]Sub test()
Dim myfilename As String
myfilename = Range("C2").Value & Range("A2").Value & " " & Format(Range("B2"), "MM DD YY")
ActiveWorkbook.SaveAs Filename:=myfilename & ".xlsm", FileFormat:=xlNormal
End Sub
Dim sPath As String
sPath = Range("A2").Value
If Right(sPath, 1) <> "\" Then sPath = sPath & "\"
ActiveWorkbook.SaveAs sPath & Range("A1").Value & Format(Range("A2").Value, " mmddyyyy")
Try this.
Code:[/FONT] [FONT=Courier New]Sub test()[/FONT] [FONT=Courier New]Dim myfilename As String[/FONT] [FONT=Courier New]myfilename = Range("a3").Value & Range("A1").Value & " " & Format(Range("a2"), "MM DD YY")[/FONT] [FONT=Courier New]ActiveWorkbook.SaveAs Filename:=myfilename & ".xlsm", FileFormat:=xlNormal[/FONT] [FONT=Courier New]End Sub[/FONT] [FONT=Courier New]