I have a dataset that contains multiple rows per account. The number of rows = the number of months since an account has been open, with the first row being zero.
The table shows how the balance has changed each row (month). I would like to calculation what the expected balance change should have been had the customer kept to their agreed schedule of payments.
For the first row (where AgeInMonths = 0), the ExpectedBalance should always be equal to the InitialLoanAmount.
For subsequent rows, I need to work out what the ExpectedBalance was for the row before and apply an Interest & Repayment calculation to that value to come up with that months ExpectedBalance.
I need to continue doing this until i get to a new AccountNumber where I should start again.
Does anyone know how I would do this?
Thanks
Jamie