If I have a table that tracks inventory, and each record denotes a transaction that either adds or subracts from inventory. How do I create another field that automatically calculates the balance for each record?
The calculation would entail adding or subtracting from the current record, as well as adding from the previous record.
For example:
Date Add/Subtract Balance*
1/1 +100 100
2/1 +200 300
3/1 -50 250
4/1 +100 350
*How do I create a query that automatically creates the balance column.
Thanks for your help.
The calculation would entail adding or subtracting from the current record, as well as adding from the previous record.
For example:
Date Add/Subtract Balance*
1/1 +100 100
2/1 +200 300
3/1 -50 250
4/1 +100 350
*How do I create a query that automatically creates the balance column.
Thanks for your help.