![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 429
|
hello,
suppose I have macro1 macro2 macro3 macro4 and I want to create a macro runall() which would run the 4 macros above in the following order macro2 macro4 macro1 macro3 How would this be done? Lino |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
|
Following should work OK: -
Public Sub RunAll() Call Macro1 Call Macro2 Call Macro3 Call Macro4 End Sub |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|