I currently have a query that is used to update two fields on my main form, I need to add several more fields to the form and I do not want to have to create and update query for 10 more fields. What I would like to know is how to add the (below) SQL to a after_update event of each of the fields with having to run separate queries.
UPDATE MasterData SET MasterData.resolved_date =forms!frmMain!txtresolved_date WHERE (((MasterData.CounterID)=[forms]![frmMain]![CounterID]));
Thanks
UPDATE MasterData SET MasterData.resolved_date =forms!frmMain!txtresolved_date WHERE (((MasterData.CounterID)=[forms]![frmMain]![CounterID]));
Thanks