+ Reply to Thread
Results 1 to 6 of 6

call/run module

  1. #1
    Registered User
    Join Date
    02-27-2009
    Location
    Newark, USA
    MS-Off Ver
    2007
    Posts
    29

    call/run module

    I wrote a simple macro that opens a file and moves thru the sheets (20) in the file.
    I also wrote 3 other macros. Each stored in a different module within the same file. In total the file has 4 macros/modules. The first one opens the target file and the other 3 perform different functions.
    I want to only have to run the first macro and have the other 3 ran as needed. This is what I envision:

    Sub Macro1()
    ChDir "C:\04 Apr 11"
    Workbooks.Open FileName:= _
    "W:\04 Apr 11\Apr 2011 Calculation.xls" _
    , UpdateLinks:=0
    Sheets("Alternate Site").Select
    Run Macro2()
    Sheets("Principal Site").Select
    Run Macro2()
    Run Macro4()
    Sheets("Home Site").Select
    Run Macro2()
    Run Macro3()
    End Sub

    When i run the code above I get this compile error: 'Expected variable or procedure, not module'. . The error happens right at the first Run Macro2(). To fix this I changed to "Run Macro2" then I recieved error '1004' 'Cannot run the macro 'Macro2'. The macro may not be available in this workbook or all macros may be disable.

    How do I fix this?

    Thank you
    Last edited by Pedroluna; 05-25-2011 at 03:53 PM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: call/run module

    Please Login or Register  to view this content.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    02-27-2009
    Location
    Newark, USA
    MS-Off Ver
    2007
    Posts
    29

    Re: call/run module

    Thank Shg,
    I ran the code above and still received the same error "compilte error-Expected variable or procedure, not module'. The error seems to be related to the macros being in separate Modules? is there a specific code to call a macro that resides in separte Module or it should not make a difference?
    Thanks,

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: call/run module

    The other macros can be in the same module or a different module, but not in a sheet module or the ThisWorkbook module, and they must be in the same VBA project (i.e., the same workbook).

  5. #5
    Registered User
    Join Date
    02-27-2009
    Location
    Newark, USA
    MS-Off Ver
    2007
    Posts
    29

    Re: call/run module

    Thanks,
    I moved the suplementary macros to the same module and that worked.
    It should have worked before, but it works now!
    Thank you

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: call/run module

    It should be no problem having them in a different module, as long as the procedures are not declared as Private and the module they are in doesn't have Option Private at the top.

    Anyway, glad you got it sorted.

+ Reply to Thread

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