Run a Macro within another macro

A

aMack

If I execute a Macro within another Macro will it return to the original
macro once complete?

Macro runs a Query, a macro, a Query, a Report.



Thanks for your help?
 
K

Ken Snell \(MVP\)

When the second macro has completed its actions, control returns to the
first macro and the next step in the sequence in the first macro's actions
is executed.
 
Top