+ Reply to Thread
Results 1 to 16 of 16

Macro open file and go back

Hybrid View

  1. #1
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Macro open file and go back

    I have a macro that will open a dialog box to allow the user to open another file. There are a couple of things that I need help with. First, I would like the code to open another excel file to run as soon as the user opens this initial file, let's call it Workbook1. Then after the user selects the file that will provide input into Workbook1, let's call it Workbook2, I want Workbook1 to be the file that the user sees again. From there, the user will either select other buttons to run other VB, or other activities. My open file code is below:

    ' Open a file

    Sub Open_File()
    Dim sFil As String
    Dim sTitle As String
    Dim sWb As String
    Dim iFilterIndex As Integer
    On Error GoTo err_handler
    ' Set up list of file filters
    sFil = "Excel Files (*.xls),*.xls"
    ' Display *.xls by default
    iFilterIndex = 1
    ' Set the dialog box caption
    sTitle = "Select File to Zip"
    ' Get the filename
    sWb = Application.GetOpenFilename(sFil, iFilterIndex, sTitle)

    Workbooks.Open Filename:=sWb
    Exit Sub
    err_handler:
    MsgBox "No selection made"

    End Sub

    Any assistance with this is much appreciated. Thanks in advance.

  2. #2
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    Welcome to the board!

    Please use code tags when posting code. Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    I would attempt to do something like this.
    Sub Open_File()
     Dim WBSrc As Workbook
     Dim WBDest As Workbook
     Dim sFil As String
     Dim sTitle As String
     Dim sWb As String
     Dim iFilterIndex As Integer
     On Error GoTo err_handler
     Set WBSrc = ThisWorkbook
     ' Set up list of file filters
     sFil = "Excel Files (*.xls),*.xls"
     ' Display *.xls by default
     iFilterIndex = 1
     ' Set the dialog box caption
     sTitle = "Select File to Zip"
     ' Get the filename
     sWb = Application.GetOpenFilename(sFil, iFilterIndex, sTitle)
     If sWb <> False Then
        Application.ScreenUpdating = False
        Set WBDest = Workbooks.Open(Filename:=sWb)
        WBSrc.Activate
        Application.ScreenUpdating = True
     End If
     Exit Sub
    err_handler:
     MsgBox "No selection made"
     
    End Sub
    This assigns your workbooks to variables so when you refer to them, you will always be assured that any references will be to the correct workbook. You don't have to worry which workbook is actually activated.
    David
    (*) Reputation points appreciated.

  3. #3
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Thanks for the code. When I run it, i am able to select a file, but it does not open and jumps right to "No selection made".

    Any thoughts?

  4. #4
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    Comment out the
    On Error GoTo err_handler
    and F8 to step through the code to see where the error occurs.

  5. #5
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Ok. First chance to try this again. Commented out the line and now I get a "Type Mismatch" message when the code steps to

    If sWb <> False Then

    What would cause this and how to repair it?

    Thanks.

  6. #6
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    Put the false in double quotes.

  7. #7
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Excellent! This worked.

    Thank you.

  8. #8
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Another question on this. So I now have 2 files open, a main file and this other file that the user has selected. I need to take certain bits of information from the file that was selected and copy into the main file. How would I assign the filename as a variable so that I can jump back and forth between the main file and the file that was selected? For example, I need to look at Column C of the selected file, find the first non-blank cell, copy the contents, then move back to the main file and past that information into a specific cell.

    Thanks again!

  9. #9
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    Use WBSrc and WBDest as objects to point to each other.
    For instance.

    WBDest.Range("A10") = WBSrc.Range("A1")

  10. #10
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Thanks for the response. I put this into the code and changed to the cell references needed for the test. I then stepped through the code. I am able to open a file, but when I get to the code above, I get an error:

    Run-time error '438': Object doesn't support this property or method


    Sub Update_Feedback()
    '

    Dim WBSrc As Workbook
    Dim WBDest As Workbook
    Dim sFil As String
    Dim sTitle As String
    Dim sWb As String
    Dim iFilterIndex As Integer
    ' On Error GoTo err_handler
    Set WBSrc = ThisWorkbook
    ' Set up list of file filters
    sFil = "Excel Files (*.xl*),*.xl*"
    ' Display *.xls by default
    iFilterIndex = 1
    ' Set the dialog box caption
    sTitle = "Select Auditor Feedback File to Open"
    ' Get the filename
    sWb = Application.GetOpenFilename(sFil, iFilterIndex, sTitle)

    If sWb <> "False" Then
    Application.ScreenUpdating = False
    Set WBDest = Workbooks.Open(Filename:=sWb)
    WBSrc.Activate
    Application.ScreenUpdating = True

    WBDest.Range("F382") = WBSrc.Range("E9")
    WBDest.Range("G382") = WBSrc.Range("F9")
    WBDest.Range("H382") = WBSrc.Range("G9")
    WBDest.Range("I382") = WBSrc.Range("H8")

    End If
    Exit Sub
    err_handler:
    MsgBox "No selection made"

    End Sub

  11. #11
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    Sorry!

    You have to specifiy the worksheets, too.

    WBDest.Worksheets(1).Range("F382") = WBSrc.Worksheets(2).Range("E9")
    or
    WBDest.Worksheets("Report").Range("G382") = WBSrc.Worksheets("Source").Range("F9")

  12. #12
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Thank you. I have updated the code as noted. I have ensured that the worksheet names match between the workbook and the code. I have changed the worksheet names to ensure no spaces as well. I now get an error of "Subscript out of Range".

    Sorry for all the questions.

    Thanks for your help.

  13. #13
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    It has to be the worksheet names. Make sure both files are open and both sheet names are spelled correctly.

    Try using the index number instead.

  14. #14
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    Destination.xlsmSource.xlsx

    Please see the attached. When I run this code, instead of the Destination getting information from the Source, it goes the other way. Take a look at Source.xlsx before you run the code. There are no blank cells. When you run the code from Destination.xlsm, you will see a blank cell in Source.xlsx. The need is to take the information from Source and paste into Destination.

    Thanks.

  15. #15
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro open file and go back

    You have the Source and Destination mixed up a little.
    Sub Update_Feedback()
     '
     
    Dim WBSrc As Workbook
     Dim WBDest As Workbook
     Dim sFil As String
     Dim sTitle As String
     Dim sWb As String
     Dim iFilterIndex As Integer
     ' On Error GoTo err_handler
     Set WBDest = ThisWorkbook
     ' Set up list of file filters
     sFil = "Excel Files (*.xl*),*.xl*"
     ' Display *.xls by default
     iFilterIndex = 1
     ' Set the dialog box caption
     sTitle = "Select File to Open"
     ' Get the filename
     sWb = Application.GetOpenFilename(sFil, iFilterIndex, sTitle)
    
     If sWb <> "False" Then
         Application.ScreenUpdating = False
         Set WBSrc = Workbooks.Open(Filename:=sWb)
         WBSrc.Activate
         Application.ScreenUpdating = True
         WBDest.Sheets("MAIN").Range("D5") = WBSrc.Sheets("Source").Range("B6")
     End If
     Exit Sub
    err_handler:
     MsgBox "No selection made"
     
    End Sub

  16. #16
    Registered User
    Join Date
    09-04-2013
    Location
    Saskatoon, Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Macro open file and go back

    EXCELLENT! Thank you very much. Have a great weekend.

+ 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. [SOLVED] Macro that prompts user to select a file to open and perform another macro on this file
    By grimmy26 in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 01-16-2014, 08:39 AM
  2. [SOLVED] Macro - Master file to import data from another open file with variable file name
    By jdodz in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-10-2012, 10:56 PM
  3. Macro to save a back-up copy of a file when it's opened
    By Barking_Mad in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-16-2010, 02:30 PM
  4. Open a file do a macro ( made) and open next succesive file
    By SVTman74 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 04-21-2006, 05:20 PM
  5. Replies: 3
    Last Post: 02-09-2005, 08:06 PM

Tags for this Thread

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