Results 1 to 6 of 6

.save not saving active workbook

Threaded View

dwr0211 .save not saving active... 09-15-2011, 03:29 PM
davegugg Re: .save not saving active... 09-15-2011, 03:55 PM
dwr0211 Re: .save not saving active... 09-15-2011, 04:09 PM
dwr0211 Re: .save not saving active... 09-15-2011, 04:10 PM
davegugg Re: .save not saving active... 09-15-2011, 04:27 PM
dwr0211 Re: .save not saving active... 09-15-2011, 04:35 PM
  1. #1
    Registered User
    Join Date
    07-25-2011
    Location
    Seattle, WA
    MS-Off Ver
    Excel 2003
    Posts
    29

    .save not saving active workbook

    I have an Excel file with a path and file name in column A. I open the Excel file in col A and make changes to a column and then try to save and close the file opened from col A.

    I view in debug the active work book name and path and it shows the file from col A. When I execute .save and .close it save to the path where the main excel file that I am running the macro from resides.
    Here is the code showing the debug statements where I look at the active workbook file name and path and then the save and close.
     WORKBOOKNAME = ActiveWorkbook.Name
        WORKBOOKPATH = ActiveWorkbook.Path
        
            With ActiveWorkbook
                ' just in case there is a compatibility issue
                ActiveWorkbook.CheckCompatibility = False
                .Save
                .Close
            End With
    This code is saving the modified excel file from col A to the path where the excel file that is running the macro resides. I modify the excel file in col A to substring a value in col b.

    An example is c:\main.xls as the main excel running macro
    In c:\main.xls col A there is a value c:\data\somefile.xls
    when I change the col B in somefile.xls and do .save .close as seen in above code sample the file is saved in c:\somefile.xls. It should be saving to c:\data\somefile.xls with replace.

    As I said above variables have these values
    WORKBOOKNAME = somefile.xls
    WORKBOOKPATH = c:\data\

    Can anyone please tell me why it is not saving to where it was opened from?(c:\data\somefile.xls)

    Thank you,
    Last edited by dwr0211; 09-15-2011 at 04:44 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