T
tina
if you want to show the "running" balance on each record, and assuming that
you have a Date/Time field that gives you a chronological order for the
records in the table: you can use an expression in an unbound control on
the form to sum the balance for every record * equal and prior to* the
current record. something along the lines of
=DSum("[ValueField]", "TableName", "[DateField] <= #" & [DateField] & "#")
substitute the correct table and field names, of course.
hth
you have a Date/Time field that gives you a chronological order for the
records in the table: you can use an expression in an unbound control on
the form to sum the balance for every record * equal and prior to* the
current record. something along the lines of
=DSum("[ValueField]", "TableName", "[DateField] <= #" & [DateField] & "#")
substitute the correct table and field names, of course.
hth