Debt Payoff Timeline Calculator: estimate months to payoff based on starting debt balance ($), annual interest rate (%). Compare scenarios and get instant re...
Formula
let remainingBalance = Math.max(0, Number(inputs.startingBalance || 0)); const monthlyRate = Math.max(0, Number(inputs.annualInterestRatePct || 0) / 1200); const scheduledPayment = Math.max(0, Number(inputs.monthlyPayment || 0)); let elapsedMonths = 0; let interestTotal = 0; let paymentsTotal = 0; let lastPayment = 0; const firstMonthInterest = remainingBalance * monthlyRate; const canAmortize = remainingBalance === 0 || scheduledPayment > firstMonthInterest; if (canAmortize && remainingBalance > 0) { while (remainingBalance > 0.0000001 && elapsedMonths < 1200) { const interestCharge = remainingBalance * monthlyRate; const amountDue = remainingBalance + interestCharge; const actualPayment = Math.min(scheduledPayment, amountDue); remainingBalance = amountDue - actualPayment; interestTotal += interestCharge; paymentsTotal += actualPayment; lastPayment = actualPayment; elapsedMonths += 1; } } const paidOff = remainingBalance <= 0.0000001; return { monthsToPayoff: paidOff ? elapsedMonths : 0, totalInterest: Math.round(interestTotal * 100) / 100, totalPaid: Math.round(paymentsTotal * 100) / 100, finalPayment: Math.round(lastPayment * 100) / 100, payoffStatus: paidOff ? (elapsedMonths === 0 ? 'No balance to repay' : 'Paid off within model') : (canAmortize ? 'Not paid off within 1,200 months' : 'Payment does not exceed first-month interest') };Starting Debt Balance ($)
10,000
Annual Interest Rate (%)
18
Monthly Payment ($)
300
Use the result to compare providers, request quotes, or send the scenario to a specialist when the numbers matter.
With the default inputs, a $10,000 balance at 18% annual interest and a $300 monthly payment is paid off in 47 months. The model produces $3,967.21 in total interest, $13,967.21 in total payments, and a final payment of $167.21.
Use this finance calculator to compare scenarios before committing money, time, or a provider conversation.
The estimate combines Starting Debt Balance ($), Annual Interest Rate (%), Monthly Payment ($) and returns Months to Payoff, Total Modeled Interest, Total Modeled Payments.
If the result changes your decision, verify the current quote, rate, eligibility rule, or provider term before acting.
Founding provider slot
We are opening one clearly labelled sponsor slot per high-intent calculator/category. The test offer is $49 USD for a 30-day tracked placement, with opt-in leads only and no anonymous views sold as leads.
Spot an error or need an update? Let us know
This calculator provides estimates based on the inputs provided. It does not constitute financial advice, investment recommendations, or tax guidance. Past performance does not guarantee future results. Consult a qualified financial advisor, accountant, or tax professional before making financial decisions.
Reviewed by the CalculateThis.ai editorial team. Updates: check back for latest parameters. Tools are for estimation only — verify with current provider terms.