How can I monitor a macro by query name and status?

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

Guest

I have several macros that run multiple queries and would like to monitor
progress as queries run. I'd like to see the query name and status. Is there
a setting for this or an add-on I can get?
 
Petz,

Are you running the macro from an event on a form? If so, you could put
a label control on the form, and every time the macro moves on to the
next query, you could insert a SetValue action to change the label's
Caption property to the name of the query.
 
Back
Top