Run a macro from another macro or from a Visual Basic procedure
To run a macro from another macro or from a Visual Basic procedure, add the RunMacro action to your macro or procedure.
To add the RunMacro action to a macro, click RunMacro in the action list in a blank action row, and set the Macro Name argument to the name of the macro you want to run.
To add the RunMacro action to a Visual Basic procedure, add the RunMacro method of the DoCmd object to your procedure, and specify the name of the macro you want to run; for example, the following RunMacro method runs the macro My Macro:
DoCmd.RunMacro "My Macro"
For more information on the RunMacro action, click .