Subtracting from Previous Rec

J

jkjmwilliams

On a new record, I would like to show the amount from the previous record
(the remainder). The new record will have a new amount entered into Amount.
Another field will contain Remainder-Amount , which will then be passed to
the new record. Can you tell me how to achieve this?
 
A

AccessVandal via AccessMonster.com

Create a new control (text box) and in the control source, input

DSum(“NewAmountâ€, “TableNameâ€)

Or

[Control1] – [Control2]
 
Top