Master Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to run a Master Macro that will run (4) child <output to> macros,
where each child has a start time and end time criteria for the queries.
Sounds easy, however I am wanting enter the start time and end time only once
for all (4) queries and have Access populate the additonal pop-ups for me.
TFTH,
Tom
 
You'll need to use a form to allow entry of the values, then click a button
on the form to run the master macro (which calls the other macros). Each of
those macros' queries need to read the values from the form using the syntax
of Forms!Formname!Controlname (use real names, of course) for each of the
values.
 
Back
Top