+ Reply to Thread
Results 1 to 2 of 2

Auto save file copy with unique filename

  1. #1
    Allen
    Guest

    Auto save file copy with unique filename

    Several users access an Excel file. I need Excel to save a copy of the file
    with a unique filename when it saves the original file under the original
    name.
    --
    Allen

  2. #2
    Ron de Bruin
    Guest

    Re: Auto save file copy with unique filename

    Hi Allen

    You can use the before save event in the thisworkbook module to save a copy of the file with a date/time stamp

    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    ThisWorkbook.SaveCopyAs ThisWorkbook.Name _
    & " " & Format(Now, "dd-mmm-yy h-mm-ss") & ".xls"
    End Sub

    See
    http://www.cpearson.com/excel/events.htm



    --
    Regards Ron De Bruin
    http://www.rondebruin.nl



    "Allen" <fsilga2001@yahoo.com> wrote in message news:67D03186-F407-43B2-B5B8-0642DD5593B5@microsoft.com...
    > Several users access an Excel file. I need Excel to save a copy of the file
    > with a unique filename when it saves the original file under the original
    > name.
    > --
    > Allen




+ 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