Date configuration

By default, ACCRINT will calculate accrued interest from the issue date. If the settlement date is in the first period, this works. However, if the settlement date is not in the first period, you probably don’t want total accrued interest from the issue date but rather accrued interest from the last interest date (previous coupon date). As a workaround, based on the article here:

set issue date to the previous coupon date set first_interest date to the previous coupon date

Note: According to Microsoft documentation, calc_method controls how total accrued interest is calculated when the date of settlement > first_interest. The default is TRUE, which returns the total accrued interest from issue date to settlement date. Setting calculation method to FALSE is supposed to return accrued interest from first_interest to settlement date. However, I was unable to produce this behavior. In the example below, issue date and first_interest date are set to the previous coupon date (as described above).

Example

In the example shown, we want to calculate accrued interest for a bond with a 5% coupon rate. The issue date is 5-Apr-2018, the settlement date is 1-Feb-2019, and the last coupon date is 15-Oct-2018. We want accrued interest from October 15, 2018 to February 1, 2019. The formula in F5 is: With these inputs, the ACCRINT function returns $14.72, with currency number format applied.

Entering dates

In Excel, dates are serial numbers. Generally, the best way to enter valid dates is to use cell references, as shown in the example. To enter valid dates directly inside a function, you can use the DATE function. To illustrate, the formula below has all values hardcoded. The DATE function is used to supply each of the three required dates:

Basis

The basis argument controls how days are counted. The ACCRINT function allows 5 options (0-4) and defaults to zero, which specifies US 30/360 basis. This article on wikipedia provides a detailed explanation of available conventions.

Notes

In Excel, dates are serial numbers.  All dates, plus frequency and basis, are truncated to integers. If dates are invalid (i.e. not actually dates) ACCRINT returns #VALUE! ACCRINT returns #NUM when: issue date >= settlement date rate < 0 or par <= 0 frequency is not 1, 2, or 4 Basis is out-of-range

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.