Keeb said:
2) Any payments I make now will go towards paying the
back interest first. Regular interest still accrues on the
principal until the back interest is paid off.
Okay, that changes things somewhat. My previous response
assumed that you would pay off the back-interest and the
outstanding loan over the same period of time.
lets assume the principal is $9300 and the back interest is
$2300. I'm in the position of dealing with the lender such
that I can choose my repayment schedule (within reason I
suppose) Only thing I can't change is the interest rate.
If it takes N months to pay off the back-interest, the balance
of the loan will grow to FV(intr/12, N, -9300), where "intr"
is the nominal annual interest rate.
I know that eventually the payments will be what they
would have been from the start had there been no back
interest in the first place [...].
So given a specific monthly payment I want to find out how
long it will take for the old back interest and the new accrued
interest to reach $0
Try this:
A1: original loan payment
A2: nominal annual interest rate
A3: =roundup(2300/A1,0) 'number of months to pay back-interest
A4: 2300/A3 'payment to pay back-interest
A4: =fv(A2/12, A3, -9300) 'new balance of loan after A3 months
A5: =nper(A2/12, A1, -A4) 'number of months to pay back loan
'with original payment
A7: =A3+A5 'total time to pay back everything
I broke it into components so that you can play what-if
games. For example, replace A4 with a preferred payment,
and replace A3 with =roundup(2300/A4,0). Or replace A3
with a preferred number of months to pay back-interest.
Or replace A5 with =pmt(A2/12,A6,-A4), where A6 contains
a preferred number of months to pay back the loan balance.
Alternatively, of course you could combine all the arithmetic
into one formula.