+ Reply to Thread
Results 1 to 4 of 4

SaveAs with today's date in file name

Hybrid View

  1. #1
    Forum Contributor PY_'s Avatar
    Join Date
    09-23-2008
    Location
    Houston
    MS-Off Ver
    Office 2016
    Posts
    289

    SaveAs with today's date in file name

    Greetings All,

    Basically the title says it all, i want to save a sheet tab as a separate XLS file with today's date in the file name. Here is what i have but its not working for some reason and i cant put my finger on it.

    I setup today's date by using this:

        Dim strExportDate As String
        strExportDate = Month(Now) & "/" & Day(Now) & "/" & Year(Now)


    This is the saveas code i WANT to use but its broken:

        ActiveWorkbook.SaveAs Filename:="M:\Estimating\EST_Price_Tables " & strExportDate & ".xls", _
            FileFormat:=xlExcel8, Password:="", WriteResPassword:="", _
            ReadOnlyRecommended:=False, CreateBackup:=False



    This is the code i am using for now since the above does not work:

        ActiveWorkbook.SaveAs Filename:="M:\Estimating\EST_Price_Tables.xls", _
            FileFormat:=xlExcel8, Password:="", WriteResPassword:="", _
            ReadOnlyRecommended:=False, CreateBackup:=False
    Last edited by PY_; 07-01-2010 at 11:09 AM.

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454

    Re: SaveAs with today's date in file name

    Hi,

    I don't think that the oblique character is permissable as part of a filename.

    How about

        Dim strExportDate As String
        strExportDate = Month(Now) & "-" & Day(Now) & "-" & Year(Now)
    or more succinctly

    strExportDate = Format(Now(), "mm-dd-yy")
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: SaveAs with today's date in file name

    Try

      Dim strExportDate As String
        strExportDate = Format(Date, "mm-dd-yy")
    or
    Dim strExportDate As String
      strExportDate = Format(Date, "mm-dd-yy") & ".xls"
      ActiveSheet.Copy
      ActiveWorkbook.SaveAs strExportDate
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Forum Contributor PY_'s Avatar
    Join Date
    09-23-2008
    Location
    Houston
    MS-Off Ver
    Office 2016
    Posts
    289

    Re: SaveAs with today's date in file name

    Wow, i cant believe i missed that you cant have a "/" in the file name!

    Thanks all for the help. And i do like some of the shortened versions!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1