Results 1 to 6 of 6

Create Backup File Within A Macro

Threaded View

  1. #2
    Forum Contributor Tarball's Avatar
    Join Date
    04-21-2007
    Location
    Atlanta, GA
    Posts
    166
    Here is a simple routine that I use

    config.defaultOutputPath is just a variable that sets the default path to where I want the file saved (use the full path, for example C:\temp\)

    sourceFile is the orginal file name and path

        Dim fs As FileSystemObject
        Dim bkupFile As File
        Dim fname as String
        
        fname="EARN.xls.bak"
        Set fs = CreateObject("Scripting.FileSystemObject")
        Set bkupFile = fs.GetFile(sourceFile)
        'bkupFile.Copy config.defaultOutputPath, True
        bkupFile.SaveAs config.defaultOutputPath & fname, FileFormat:=xlCSV
    
    'Memory Cleanup
        Set bkupFile = Nothing
        Set fs = Nothing
    Last edited by Tarball; 07-08-2007 at 09:42 PM.

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