Running a Macro Group

  • Thread starter Thread starter Michelle
  • Start date Start date
M

Michelle

Help! I have a deadline!

I thought that if you designed a macro group and you have
the group name (say "UpdateInfo") and several macros in
that group (say "Contact", "Client" "Home") with no spaces
in between them, you could run the group macro on an event
(say on the event "On Click" you entered "UpdateInfo") it
would run all three macros because there are no spaces. It
appears that this isn't true, because mine is clearly only
running the first macro in the group. Any advice on how to
run all three? Once again, I thought with no spaces it
would all the macros in a group.

Thank you in advance for your help!
 
MacroGroup names are simply for logical grouping of Macros so that you can
find the Macro (I look after a database with 3000+ Macros written by someone
else and it is a nightmare). When you use the MacroGroup name, only the
first Macro is executed.

Create a Macro "Run3Macros" that uses 3 RunMacro action to run the other 3
Macros and use "Run3Macros" in your OnClick Property.
 
Back
Top