I am Tring to HAVE a MACRO that does the following:
When the Button is Selected:
1. The File Prompts USER to save in a Directory of their CHOICE.
2 Automatically Names the SAVED File in the following Scheme>
SES_TimeCard_###
The ### is the value of cell C2
Here is My Code:
ChDir "C:\"
ActiveWorkbook.SaveAs Filename:="C:\SES_Time_061204.xls", FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False
Application.Dialogs(xlDialogSendMail).Show
Range("A1").Select
End Sub
Thank you !!!