I have a subform in a form, where the users enter weights for alloy. I have put a control on the subform that gives me a running total of alloy used, using
=DSum(“[Alloy Weight]”,”tblDetails”,”[ID] <= Forms![frmLog]![ID]").
The problem I have, is that I have been asked for the totals to change, when the Alloy changes eg
Alloy Alloy Wt Total
C111 23.00 23.00
C111 15.00 38.00
C111 10.60 48.60
C112 17.00 17.00
I the only way the form and subform are linked is by the ID, so I don't know how to achieve the above.