Loan Amortization in Google Sheets
Brent Allen
Instructor
Closed Loan
Open Loan
PMT()
function.=IF(PMT() formula > opening balance + interest, PMT() formula, opening balance + interest)
PMT()
formula >= opening balance plus interest; use payment formula
PMT()
formula < opening balance plus interest; use the opening balance plus interest.
Example: 1,000 payment formula, 500 opening balance, 6% APR amortized monthly.
=IF(1000 > 500 + 500 * (6%/12), 1000, 500 + 500 * (6%/12))
502.50
Financial functions only work when the schedule has no irregular payments.
Functions to not use when working with lump sums include:
IPMT()
PPMT()
CUMIPMT()
CUMPRINC()
PMT()
formula must be calculated first!
Interest payment - Interest = Opening balance * APR / Number of annual periods
Principal payment - Principal = Monthly payment - Interest
Cumulative interest - Cumulative Interest = Prior cumulative interest + Current period interest payment
Cumulative principal paid - Cumulative Principal = Prior cumulative principal paid + Current period principal payment
Loan Amortization in Google Sheets