+ Reply to Thread
Results 1 to 2 of 2

Code Fails Saving File

Hybrid View

  1. #1
    Registered User
    Join Date
    07-02-2004
    Posts
    3

    Code Fails Saving File

    Hi

    I am working with 2 files, A and B.

    File A opens File B and then saves File B as file C.

    Then Data gets pasted from File A to File C and then File C is saved as file C

    My code works up to where I want to save file C as file C after pasting data from file A.

    See my note within the code below CODE FAILS HERE

    Thanks for any help on fixing this, Benjamin


    Dim WkbFPMaster As Workbook
    Dim WksFPMasterRDF As Worksheet
    Dim WksFPMasterControl As Worksheet
    Dim WkbRDF As Workbook
    Dim WkbFPOFOpen As Workbook
    Dim WkbFPOFSave As Workbook
    
    Set WkbFPMaster = ActiveWorkbook
    Set WksFPMasterRDF = WkbFPMaster.Sheets("RDF")
    Set WksFPMasterControl = WkbFPMaster.Sheets("Control")
    
       
    'LOOPING RECORD DATA FILES
    
        For M = 1 To Range("Max_RDF_Number")
        Range("Current_RDF_Number") = M
        Calculate
        If Range("RDF_Run_Option") = 1 Then
        
    'OPEN FPOF MASTER AND SAVE AS FPOF OUTPUT FILE NAME
            
            Application.DisplayAlerts = False
            Set WbkFPOFOpen = Workbooks.Open(WksFPMasterControl.Range("FPOF_Root_Directory_Open").Value, UpdateLinks:=0)
            WbkFPOFOpen.SaveAs Filename:=(WksFPMasterControl.Range("FPOF_Root_Directory_Save").Value)
            Application.DisplayAlerts = True
        
     'MORE CODE IN HERE
    
           Application.DisplayAlerts = False
           WbkFPOFOpen.SaveAs Filename:=(WksFPMasterControl.Range("FPOF_Root_Directory_Save").Value) 'CODE FAILS HERE
           WbkFPOFOpen.Close (False)
           Application.DisplayAlerts = True
        
    Next M
    
    End Sub

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Code Fails Saving File

    SaveAs is used to create a new file and not save an existing file. If you try to use SaveAs a 2nd time with the same file name, it errors because that file already exists.

    The 2nd time you save file C, just use...
    WbkFPOFOpen.Save
    ...with no file name.

    Or you could replace this...
    WbkFPOFOpen.SaveAs Filename:=(WksFPMasterControl.Range("FPOF_Root_Directory_Save").Value)
    WbkFPOFOpen.Close (False)

    With just this to both Save and Close
    WbkFPOFOpen.Close SaveChanges:=True

    Also note: the variable name is the Dim statement is different than within the rest of code
    Dim WkbFPOFOpen As Workbook
    WbkFPOFOpen.SaveAs Filename:=(WksFPMasterControl.Range("FPOF_Root_Directory_Save").Value)
    Last edited by AlphaFrog; 11-27-2013 at 03:17 AM.
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Saving file as CSV corrupts when using code
    By OWA in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-14-2013, 12:53 PM
  2. [SOLVED] Code fails in one file, works in copy?
    By JasonLeisemann in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-14-2013, 12:20 PM
  3. Delete code when saving the file
    By Bob@Sun in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-26-2010, 04:42 PM
  4. Saving file without code, problems
    By bhofsetz in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-18-2008, 02:53 PM
  5. saving code to csv file
    By Scottmk in forum Excel General
    Replies: 2
    Last Post: 06-20-2007, 09:17 AM

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