Hello,
I have a ms access table named transaction. The fields are:
trans_id,
trans_date,
product,
storage,
received,
issued
Now, i want to create a select query that include all the columns mentioned above, plus two more columns named,
Opening_balance and Ending_balance in the query.
Opening_balance should contain previous row's Ending_balance column value
and
Ending_balance should contain current row's (Opening_balanc e + received - issued).
I like to do it using Expression Builder, not using VBA code. Is there any suggestion for it.
Thanks
I have a ms access table named transaction. The fields are:
trans_id,
trans_date,
product,
storage,
received,
issued
Now, i want to create a select query that include all the columns mentioned above, plus two more columns named,
Opening_balance and Ending_balance in the query.
Opening_balance should contain previous row's Ending_balance column value
and
Ending_balance should contain current row's (Opening_balanc e + received - issued).
I like to do it using Expression Builder, not using VBA code. Is there any suggestion for it.
Thanks
Comment