ACCRINT Function
Calculates accrued interest for a security that pays periodic interest.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| issue | Date the security was issued. | Required |
| first_interest | Date of the first interest payment. | Required |
| settlement | Date the security is sold to the buyer. | Required |
| rate | Annual coupon rate. | Required |
| par | Par value of the security (default $1,000). | Required |
| frequency | Number of coupon payments per year (1, 2, or 4). | Required |
| basis | Day-count convention (0 = US 30/360, default). | Optional |
| calc_method | TRUE = calculated from issue date (default), FALSE = from first_interest. | Optional |
Basic Example
Accrued interest for a semi-annual bond
=ACCRINT(DATE(2024,1,1), DATE(2024,7,1), DATE(2024,4,1), 0.05, 1000, 2)Calculates accrued interest from January 1 to April 1 for a 5% semi-annual bond with $1,000 par value.
Advanced Examples
Example 1: Accrued interest with actual/365 day count
Bond tradingUse basis 3 for actual/365
=ACCRINT(DATE(2024,1,1), DATE(2024,7,1), DATE(2024,4,1), 0.05, 1000, 2, 3)How ACCRINT Works
ACCRINT calculates the interest that has accumulated since the last coupon payment. The result is based on the coupon rate, par value, and the number of days between the issue date and settlement date.
Important Notes & Limitations
Dates must be entered as valid Excel dates or with the DATE function.
Frequency must be 1 (annual), 2 (semi-annual), or 4 (quarterly).
Different basis values produce different day-count results.
Common Errors & Fixes
#NUM! errorInvalid dates, frequency, or basis.Fix: Verify dates are valid and frequency/basis are correct.
#VALUE! errorDates are not recognized as dates.Fix: Use DATE(year, month, day) or valid date serial numbers.
Download Practice File
ACCRINT
accrintPractice ACCRINT with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the ACCRINT function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps