I have a table that resembles a bank transaction: transId, check#, pay-to, currentAmount, pay-date, etc.
I have a report out of that table with one more field in it: balance. I want the balance field to be calculated as " = previousBalance - currentAmount". I don't know how to do it.
I thought about adding the "Balance" field to the table.
First of all, I think it's not good idea to reserve a space to hold calculatable data.
If I have to use the "Balance" field, still, how would I calculate the balance?
I have a report out of that table with one more field in it: balance. I want the balance field to be calculated as " = previousBalance - currentAmount". I don't know how to do it.
I thought about adding the "Balance" field to the table.
First of all, I think it's not good idea to reserve a space to hold calculatable data.
If I have to use the "Balance" field, still, how would I calculate the balance?