Home Topics excel Create a loan amortization schedule in Excel (with extra payments)

Create a loan amortization schedule in Excel (with extra payments)

Apr 04, 2025 am 10:41 AM

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).

Create a loan amortization schedule in Excel (with extra payments)

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.

Create a loan amortization schedule in Excel (with extra payments)

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.

Create a loan amortization schedule in Excel (with extra payments)

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.

Create a loan amortization schedule in Excel (with extra payments)

(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).

Create a loan amortization schedule in Excel (with extra payments)

(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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to add calendar to Outlook: shared, Internet calendar, iCal file How to add calendar to Outlook: shared, Internet calendar, iCal file Apr 03, 2025 am 09:06 AM

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

How to use Flash Fill in Excel with examples How to use Flash Fill in Excel with examples Apr 05, 2025 am 09:15 AM

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

MEDIAN formula in Excel - practical examples MEDIAN formula in Excel - practical examples Apr 11, 2025 pm 12:08 PM

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

Excel shared workbook: How to share Excel file for multiple users Excel shared workbook: How to share Excel file for multiple users Apr 11, 2025 am 11:58 AM

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

How to spell check in Excel How to spell check in Excel Apr 06, 2025 am 09:10 AM

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

Absolute value in Excel: ABS function with formula examples Absolute value in Excel: ABS function with formula examples Apr 06, 2025 am 09:12 AM

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

Google Spreadsheet COUNTIF function with formula examples Google Spreadsheet COUNTIF function with formula examples Apr 11, 2025 pm 12:03 PM

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

Excel: Group rows automatically or manually, collapse and expand rows Excel: Group rows automatically or manually, collapse and expand rows Apr 08, 2025 am 11:17 AM

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

See all articles