If these are true "Macros", according to Help:
CurrentDB.Execute ()
Runs an action query or executes an SQL statement on a specified Connection
or Database object
If you want to run a "Macro" in VBA code, the syntax is
DoCmd.RunMacro "My Macro"
I do not use macros; they have no error handling and, IMO, are to limiting.
I would suggest converting the macros to code....
To convert global macros to Visual Basic:
1. In the Database window, click Macros under Objects.
2. Click the name of the macro you want to convert.
3. On the File menu, click Save As.
4. In the Save As dialog box, click Module and click OK.
5. In the Convert macro dialog box, select the options you want, and click
Convert.
HTH

Signature
Steve S
--------------------------------
"Veni, Vidi, Velcro"
(I came; I saw; I stuck around.)
> This is the VBA code executed from OnClick on a form's command button, to run
> 4 macros:
[quoted text clipped - 9 lines]
>
> Would appreciate your help in de-bugging this. Thanks.