Create a loan amortization schedule in Excel (with extra payments)
This tutorial demonstrates how to create a detailed amortization schedule in Excel for amortizing loans or mortgages. An amortizing loan is repaid in installments over its term, with each payment covering principal and interest. An amortization schedule itemizes these payments, showing the principal and interest portions, and the remaining balance after each payment.
This guide covers:
- Creating a loan amortization schedule in Excel.
- Handling variable numbers of payment periods.
- Incorporating additional payments.
- Utilizing an Excel amortization template.
Creating a Loan Amortization Schedule in Excel
This requires the PMT
, PPMT
, and IPMT
functions:
-
PMT
: Calculates the total periodic payment (constant throughout the loan). -
PPMT
: Calculates the principal portion of each payment (increases over time). -
IPMT
: Calculates the interest portion of each payment (decreases over time).
Step 1: Setting up the Amortization Table
First, define input cells:
- Cell C2: Annual interest rate
- Cell C3: Loan term (years)
- Cell C4: Number of payments per year
- Cell C5: Loan amount
Create a table with headers "Period," "Payment," "Interest," "Principal," and "Balance" (A7:E7). Populate the "Period" column with payment numbers (e.g., 1-24).
Step 2: Calculating Total Payment Amount (PMT
Formula)
Use the PMT
function: =PMT($C$2/$C$4, $C$3*$C$4, $C$5)
. This formula should be entered in B8 and copied down. Note the use of absolute references ($
) for consistent calculations.
Step 3: Calculating Interest (IPMT
Formula)
Use the IPMT
function: =IPMT($C$2/$C$4, A8, $C$3*$C$4, $C$5)
. Enter this in C8 and copy down. A8 is a relative reference, adjusting for each period.
Step 4: Calculating Principal (PPMT
Formula)
Use the PPMT
function: =PPMT($C$2/$C$4, A8, $C$3*$C$4, $C$5)
. Enter this in D8 and copy down.
(Verify: Principal Interest = Payment for each row)
Step 5: Calculating Remaining Balance
In E8: =C5 D8
(Loan amount Principal). In E9 and below: =E8 D9
(Previous balance Principal).
(To display positive numbers, negate the PMT
, IPMT
, and PPMT
formulas and use subtraction for the balance.)
Amortization Schedule for a Variable Number of Periods
For a reusable schedule, input a maximum number of periods (e.g., 360) in the "Period" column. Wrap each formula in an IF
statement to check if the period is within the actual loan term. If not, return an empty string. Conditional formatting can then hide extra rows.
Loan Amortization Schedule with Additional Payments
This requires more complex formulas to account for variable extra payments. Additional input cells are needed (e.g., for the extra payment amount). Formulas will need to adjust the principal and balance calculations accordingly. Detailed formulas are provided in the original document.
Amortization Schedule Excel Template
Excel offers built-in templates; search for "amortization schedule" when creating a new workbook.
The original document provides detailed formulas and screenshots for each step, including handling variable periods and additional payments. Remember to adapt cell references if your table layout differs.
The above is the detailed content of Create a loan amortization schedule in Excel (with extra payments). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article explains how to access and utilize shared calendars within the Outlook desktop application, including importing iCalendar files. Previously, we covered sharing your Outlook calendar. Now, let's explore how to view calendars shared with

This tutorial provides a comprehensive guide to Excel's Flash Fill feature, a powerful tool for automating data entry tasks. It covers various aspects, from its definition and location to advanced usage and troubleshooting. Understanding Excel's Fla

This tutorial explains how to calculate the median of numerical data in Excel using the MEDIAN function. The median, a key measure of central tendency, identifies the middle value in a dataset, offering a more robust representation of central tenden

This tutorial provides a comprehensive guide to sharing Excel workbooks, covering various methods, access control, and conflict resolution. Modern Excel versions (2010, 2013, 2016, and later) simplify collaborative editing, eliminating the need to m

This tutorial demonstrates various methods for spell-checking in Excel: manual checks, VBA macros, and using a specialized tool. Learn to check spelling in cells, ranges, worksheets, and entire workbooks. While Excel isn't a word processor, its spel

This tutorial explains the concept of absolute value and demonstrates practical Excel applications of the ABS function for calculating absolute values within datasets. Numbers can be positive or negative, but sometimes only positive values are neede

Master Google Sheets COUNTIF: A Comprehensive Guide This guide explores the versatile COUNTIF function in Google Sheets, demonstrating its applications beyond simple cell counting. We'll cover various scenarios, from exact and partial matches to han

This tutorial demonstrates how to streamline complex Excel spreadsheets by grouping rows, making data easier to analyze. Learn to quickly hide or show row groups and collapse the entire outline to a specific level. Large, detailed spreadsheets can be
