no not really
the thing is that having databases where data depends on other rows in the same table is diametrically opposed to what access does. (or should do)
what the OP is looking for is a way to maintain an ordered list
payment 1
payment 2
payment 3
payment 4
payment 5
so that each payment stores the value from the previous payment
now this should be easy if payment 6 follows payment 5 - since you can look up the value from payment 5, to use with payment 6.
so when you enter payment 6, you need to find the previous payment no 5. so you just need a mechanism to retrieve the previous payment - which may be the highest record number on file (ie payment 5) {always ignoring irrelevant records for OTHER accounts etc}
Now, a problem arises if you now realise that you omitted to enter a payment that should have followed payment 3. So if you enter this payment in the correct sequence (no 4), you now need to shuffle the values for existing payments 4,5,6. (which is complicated and a lot of work)
alternatively, you may decide to add the new payment at the end as payment 7. But depending on how you record this, the dates may not run in sequence
Now none of this is necessarily an issue - as long as you understand what might happen, and your app can deal with it. I think this all started with a situation where the incorrect values were being looked up.
But for example, if you enter two payments for the same customer on the same date, how can you decide which should be treated as the last of these, when you come to enter another payment in the future - hence you need some precise objective way to determine this - and a sequence number may be OK for this, as long as you can be sure that is the case.
Hence an alternative (the true database way perhaps!) is to decide instead that
a) the order that payments were entered is not important (although clearly the date is)
b) and the running balance isnt.
Since the balance can be obtained by adding together whatever transactions values we require
eg
all transactions
all transactions up to a given date
all transactions of a given type
etc etc