I m using Application run to call several macros in order like this.
Sub Run_All_Macros()
Application.Run ("Macro_1")
Application.Run ("Macro_1")
End Sub
When I start Run_All_Macros, all the macros run in parallel. Is there a way to wait for the first macro to complete before the second is started?