There is no RunningSum property for controls in a form, because the form is
dynamic, i.e. you modify, filter and sort them at runtime.
If you can guarantee that your form is sorted by (say) the ID field, and
that no records are filtered out, you could display a running Sum for the
Amount field with this in the Control Source of a text box:
=DSum("Amount", "Table1", "ID <= " & [ID])
You could do that more efficiently by creating a query with a subquery to
get the total. However, the form would then be read-only. If you want to
pursue that idea, see:
How to Create and Use Subqueries
at:
http://support.microsoft.com/?id=209066