Business Loan Calculator UK Free
Business Loan Calculator
Not calculated yet.
Loan Amount: £${loanAmount.toFixed(2)}
Loan Term: ${loanTerm} years
Interest Rate: ${interestRate * 100}%
`; loanSteps += `Formulas:
Monthly Payment = Loan Amount × Monthly Interest Rate / (1 – (1 + Monthly Interest Rate)^-Total Payments)
Total Repayment = Monthly Payment × Total Payments
`; loanSteps += `Results:
Monthly Payment: £${monthlyPayment.toFixed(2)}
Total Repayment: £${totalRepayment.toFixed(2)}
`; if (document.getElementById(“calculationDetails”).style.display === “block”) { document.getElementById(“calculationDetails”).innerHTML = loanSteps; } } function resetBusinessLoan() { document.querySelectorAll(“.calculator-form input”).forEach(el => el.value = “”); loanSteps = “”; document.getElementById(“calculationDetails”).innerHTML = “
Not calculated yet.
“; } function toggleCalculationSteps() { const details = document.getElementById(“calculationDetails”); const arrow = document.getElementById(“toggleArrow”); if (details.style.display === “none” || details.style.display === “”) { details.style.display = “block”; arrow.style.transform = “rotate(180deg)”; details.innerHTML = loanSteps || “Not calculated yet.
“; } else { details.style.display = “none”; arrow.style.transform = “rotate(0deg)”; } }