Results 1 to 11 of 11

Execution of Macro Stops

Threaded View

  1. #1
    Registered User
    Join Date
    10-01-2010
    Location
    Mumbai, India
    MS-Off Ver
    Excel 2007
    Posts
    38

    Execution of Macro Stops

    I am facing a peculiar problem while running a macro in Excel 2007. This macro is being run in an excel file named "Test.xlsm". My macro code is as under -

    Sub Macro1()
    '
    ' Macro1 Macro
    '
    
        Workbooks.Open FileName:="C:\Data\LIB\AuditMasters.xlsx"    => Macro execution stops here.
    
        Windows("Test.xlsm").Activate
    
        Range("B8").Select
    
        ActiveCell.FormulaR1C1 = _
            "=VLOOKUP(RC[-1],[AuditMasters.xlsx]BranchDirectory!R2C1:R1500C2,2,FALSE)"
    
        Windows("AuditMasters.xlsx").Activate
    
        ActiveWorkbook.Close
    
        ActiveWorkbook.BreakLink Name:="C:\Data\LIB\AuditMasters.xlsx", Type:= _
            xlExcelLinks
    
    End Sub
    Now the problem is that the code runs without any problem in the debug mode. But when I execute the code using the shortcut key assigned to the macro, the program stops after opening the file in line no. 1.

    Can someone suggest a solution to this problem.
    Last edited by romperstomper; 10-03-2010 at 06:57 AM. Reason: mark solved

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