How to Calculate Accrued Interest at Maturity Using ACCRINTM in Excel

When you are architecting a complex financial model dealing with fixed-income securities, standard accrued interest algorithms (like the standard ACCRINT function) are mathematically invalid if the security does not pay periodic interest, but rather pays the entirety of the accrued interest only at the absolute date of maturity. To force the Microsoft Excel engine to execute the correct chronological calculus for this specific bond architecture, you must deploy the specialized ACCRINTM function.

Understanding the ACCRINTM Architecture

The ACCRINTM (Accrued Interest at Maturity) function is a rigid, specialized algorithmic engine. It calculates the total interest earned on a security from its issue date to its final maturity date. It strictly assumes zero periodic coupon payments. It ingests the chronological parameters, the annual rate, and the par value, and outputs a single, absolute integer representing the final cash flow.

The syntax requires exactly three mandatory arguments and two optional modifiers: =ACCRINTM(issue, settlement, rate, par, [basis])

  • issue: The absolute chronological date the security was issued.
  • settlement: The absolute chronological date the security matures (or is transferred to the buyer).
  • rate: The annual coupon interest rate.
  • par: The par value (the geometric face value) of the security.
  • [basis]: An optional integer defining the specific day-count basis algorithm (e.g., 0 for US 30/360, 1 for actual/actual).

Executing the Interest Extraction

Imagine your firm purchases a highly specific corporate bond. The bond is issued on April 1, 2024 (Cell A1). It matures precisely three years later on April 1, 2027 (Cell A2). The annual interest rate is 5.5% (Cell A3), and the par value is $100,000 (Cell A4). The contract specifies a US (NASD) 30/360 day-count basis (Code 0).

To execute the precise extraction, click an empty cell and type:

=ACCRINTM(A1, A2, A3, A4, 0)

The exact millisecond you press Enter, the Excel engine executes the calculus. It calculates the exact geometric distance in days between the issue and settlement dates using the rigid 30/360 algorithm, applies the 5.5% rate to the $100,000 par value, and outputs the absolute integer: 16,500.00. This provides mathematical proof of the exact interest payout you will receive at the end of the three-year matrix.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.