How can I run a macro based in changed info in a query?

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

Guest

I have a table with a variety of info. I also have a query to select specific
records from that table. I want to run an output macro when the records in
the query change, how would I go about doing that?
 
Jason,
I know I don't understand what you want to do and I suspect most others have
the same problem.

I think you want to output data to some destination when specific records
are changed or when records are added or deleted from these specific group
of records. Access doesn't have any mechanism to do this other than form
events.

If you are doing all the data entry, addition, modification, and deletion
through a form bound to your query, then you can use form events (probably
after update and after insert) to output the data to some destination.
 
Back
Top