Quick Answer

ISPMT Function

Calculates the interest paid during a specific period of a loan with equal principal payments.

✓ Excel✓ Google SheetsExcel All versions

Syntax

ISPMT
(rate, per, nper, pv)

Parameters

ParameterDescriptionRequired
rateInterest rate per period.Required
perThe period for which to calculate interest.Required
nperTotal number of payment periods.Required
pvPresent value or loan principal.Required

Basic Example

Interest for a specific period of an interest-only or equal-principal loan

=ISPMT(0.05/12, 1, 12, 12000)
Result-$50.00

For a $12,000 loan at 5% annual interest, the first month's interest is $50 if principal is repaid equally.

Advanced Examples

Example 1: Later period interest

Amortization schedule

Interest decreases as principal is repaid

=ISPMT(0.05/12, 6, 12, 12000)
Result: Interest for period 6
Because the principal balance declines, the interest also declines each period.

How ISPMT Works

ISPMT calculates interest based on the outstanding principal balance at the start of the period. Unlike IPMT, it assumes equal principal payments rather than equal total payments.

1
Enter rate
Type the rate
2
Enter per
Type the per
3
Enter nper
Type the nper
4
Enter pv
Type the pv
5
Calculate
Press Enter to get the result.

Important Notes & Limitations

  • ISPMT is different from IPMT. IPMT is for loans with equal payments.

  • Returns negative values by default.

  • Requires consistent period units.

Common Errors & Fixes

Wrong resultConfused ISPMT with IPMT.

Fix: Use IPMT for standard amortized loans with equal payments.

#NUM! errorPer is outside the range 1 to nper.

Fix: Ensure per is valid.

Download Practice File

Practice ISPMT with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the ISPMT function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

What is the difference between ISPMT and IPMT?
ISPMT assumes equal principal payments. IPMT assumes equal total payments.
When should I use ISPMT?
Use it for loans where the principal is repaid in equal installments, not typical amortized loans.