Results 1 to 4 of 4

SaveAs with today's date in file name

Threaded 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.

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