Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is probably simple but I have two modules that I had to break up
because it was too large. Anyway, I cannot figure out what object or syntax or whatever to use to go to Module2 when it is done with Module one. Could someone point me in the right direction. Thanks in advance, Bowbender |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not modules but macros.
Call the macros in Module 2 from the last macro in module 1. -- HTH Bob Phillips wrote in message ups.com... This is probably simple but I have two modules that I had to break up because it was too large. Anyway, I cannot figure out what object or syntax or whatever to use to go to Module2 when it is done with Module one. Could someone point me in the right direction. Thanks in advance, Bowbender |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry bout that, I am in no way any sort of expert. How would you call
it exactly, I am really lost here. Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub RunAllMacros()
Call Macro1 '(or whatever the first macro name is) Call Macro2 '(or whatever the second macro is) end sub ps - Macros are stored in modules, you cannot call a module... only a macro hope this helps " wrote: Sorry bout that, I am in no way any sort of expert. How would you call it exactly, I am really lost here. Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry, found it. It seems if you place the name of the macro inside
the other, it will run it. Man do I feel dumb. Thanks again. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automatically insert time in excel but not automatically updated | Excel Worksheet Functions | |||
Install ThisWorkbook and Module1 files with batch script | Excel Programming | |||
Module1 vs Thisworkbook for Macro | Excel Programming | |||
UDF error when renaming Module1 | Excel Programming | |||
size/space problem with module1 in VB even though it is empty | Excel Programming |