Results 1 to 8 of 8

Date issue with macro

Threaded View

  1. #1
    Registered User
    Join Date
    02-15-2010
    Location
    Bournemouth
    MS-Off Ver
    Excel 2003
    Posts
    76

    Date issue with macro

    Hello again my friends

    Hope all are well.
    I was wondering if someone could assist me with. I have a speadsheet which has a macro button assigned, where once clicked it will save that spreadsheet under the date listed in a cell (depicted as NOW()). The sheet saves under the current date at the time of saving (great...) but when I open the sheet, the date is showing as the current day (due to the NOW () reference attached). I was wondering is there of manipulating my code so that the date within a saved spreadsheet will remain as it was the day it was saved? here is the code attached:
    Sub Daily_Save()
    '
    'Macro created by Ivor 29/06/10
    'Designed to save the file daily, under the current date automatically
    
    Dim dailytaskfile As String
        Dim dailytaskpath As String
        Dim activeextract As String
        'activeextract = ActiveWorkbook
        ActiveWorkbook.Save
        dailytaskpath = Range("F3").Value
        dailytaskfile = Range("G3").Value
            
        Application.StatusBar = "Saving file ..."
        ActiveWorkbook.Save
    'Reconciliation directory
        
        'ActiveWorkbook.ReadOnlyRecommended = False
        'ActiveWorkbook.WritePassword = ""
        
        ActiveWorkbook.SaveAs FileName:= _
            dailytaskpath & dailytaskfile, FileFormat:= _
            xlNormal, Password:="", WriteResPassword:="", _
            ReadOnlyRecommended:=False, CreateBackup:=False
    
    End Sub
    Thanks guys

    Ivor
    Last edited by Ivor; 07-05-2010 at 07:35 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