Today I wrote up a quick proof of concept for a task to propagate changes to other records that matched a key of a cost reference number and a phase number.
In this case, I wrote a before update event routine to check to see if there were other records that met the criteria, ask the user if they wanted to make the update to all the records, and then cancel the event if not, but to update the other records if so.
This was a proof of concept because I wasn’t sure how the subform was going to handle making updates to a form RecordsetClone or if it would even let me do it. But this worked quite nicely and Access auto-updated the subform even though I was accessing a SQL server recordset. I was quite happy with the results. Here’s my code:
Some potential gotchas to watch out for though. I think if you were filtering the form this might remove records from the recordsetclone as I believe filters and ordering can be applied directly to the recordset.
However, if your subform always showed all the associated records you might want to change, this could work very well!