forevergrateful said:
I loaned someone money to someone a variety of times between '82 and '85.
The interest rate was fixed at the time. From then till now some of the
money has been repaid, but only a few times over the full period.
Which function would help me know the present value of the loan including
interest and the amounts already returned, as well as the balance at the end
of each year?
Noncommercial, unsecured loans with an average loan date more than 2 decades
ago with sporadic subsequent repayments? The glib answer for the present
value of the loans would be zero, at least as a stream of future payments.
If you think there's some chance the loans will still be paid back, then the
way you calculate loan principal, interest and total balances is to set up a
table from time 0 (when a loan was made) in the top row and paymens in
subsequent rows. Dates in 1st column, payments in 2nd column, principal
portion of payments in 3rd column, interest portion of payments in 4th
column, and total loan balance in 5th column. Dates, initial balance (loan
amount in 5th column of first row), and subsequent payments are entries. All
other cells are formulas. There are no formulas in the 2nd through 4th
columns in the first row. For simplicity, I'll start this in cell A1. My
approach is equivalent to allowing negative amortization.
A1: entry - date loan made
E1: entry - loan amount
A2: entry - date of first payment
B2: entry - amount of first payment
C2: =MAX(0,B2-D2)
D2: =E1*(((1+i/12)^(1/30.4375))^(A2-A1)-1)
E2: =E1-B2+D2
As you add entries in columns A and B, select the cells in the preceding
row's columns C through E and fill down into the row for the latest payment.
For example, after you enter the second payment's date and amount in A3 and
B3, respectively, select C2:E2 and fill down one row into C3:E3.
The term i in the D2 formula above is the interest rate assumed to be an
APR.