I'm new to VBA and Access and have inherited a database that needs an improvement.
I have a form in Access that shows a table for editing:
When the labour rate value in the table is changed I need to run the following query to update another table:
update finishedproduct set labourrate = newvalue where labourrate = oldvalue;
(Yes the design of this database is bad.)
Which event can I handle to react to the labour rate changing?
How can I get the previous value of the field and then the new value of the field?
Something I don't know: When the user changes the labour rate value in this grid is the table updated immediately?