I have a form that calls a public sub to calculate a column for each record in a subform. The code is working but the changes are not committed. If I make a change to a record after the sub runs it asks me to Save, Copy to Clipboard, or Drop changes. Also the edits to each record are not displayed on the form after the sub runs. I am missing somthing below that saves the changes and updates the form.
Any ideas?
vmon
Public Sub ' Called from after update on subform field
'load recordset.....
rst.Edit
rst.Fields("MeterFootage") = 0
rst.Update
End Sub ' return to subform
Any ideas?
vmon
Public Sub ' Called from after update on subform field
'load recordset.....
rst.Edit
rst.Fields("MeterFootage") = 0
rst.Update
End Sub ' return to subform