How can I add up a value to the current recordset value when editing a table?
here is my code I can edit the current rs value, but this code is replacing the existing one. Instead I need the code to add a new value to the existing one
Code:
If rs31![POID] = rs32![POID] And rs31![MRP Date] < rs32![Pstg Date] Then
rs31.Edit
rs31![QTY ACC] = rs32![QTY ACC]
rs31.Update
In other words I need rs31 to be equal rs32 + current value in rs31.