View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Krystal Peters Krystal Peters is offline
external usenet poster
 
Posts: 12
Default new template & save on first open

That works! yeah!

"Dave Peterson" wrote:

Maybe something like:

Option Explicit
Private Sub Workbook_Open()
If Me.Path = "" Then
'still a template
Me.SaveAs Filename:="C:\somepath\somefilename - " _
& Format(Date, "mmm - yyyy") & ".xls", FileFormat:=xlWorkbookNormal
End If
End Sub



Krystal Peters wrote:

Developing a template for a monthly report. I want when the template is
first used to prompt to save the file using this format "filename - month
year" .xls

I am able to get month and year, but cannot get the file to save when the
template is first used? Know to use Workbook_Open() on the ThisWorkbook
module...

Any suggestions? Thanks,


--

Dave Peterson