ACCRINT Function¶
The ACCRINT function in Excel is used to calculate the accrued interest for a security that pays periodic interest. This function is useful for determining the amount of interest that has accumulated between the issue and settlement date based on the security's coupon payment schedule.
Key Features of ACCRINT:¶
- Computes interest accrued up to a certain settlement date for a security that pays periodic interest.
- Useful for financial professionals dealing with fixed-income securities or bond valuations.
- Supports various day count conventions (e.g., Actual/360, Actual/365, etc.).
- Includes a
calc_methodparameter that determines whether to include the full first period or calculate it proportionally.
Syntax:¶
- issue: The date the security was issued.
- first_interest: The date of the first interest payment for the security.
- settlement: The date the security is purchased or settled by the buyer.
- rate: The annual coupon rate of the security.
- par: The par value (face value) of the security. Defaults to
1000if omitted. - frequency: The number of coupon payments per year:
1= Annual payments.2= Semi-annual payments.4= Quarterly payments.
- [basis]: (Optional) The day count basis to use. Defaults to
0. The options are:0= US (NASD) 30/360 (default).1= Actual/actual.2= Actual/360.3= Actual/365.4= European 30/360.
- [calc_method]: (Optional) A logical value (TRUE or FALSE) that determines whether to include the full first period:
TRUE(or omitted) = Accrues interest from the issue date, even if it's before the first interest payment.FALSE= Accrues interest only from the first interest payment date.
How It Works:¶
The ACCRINT function computes the interest accrued using the formula based on the day count convention and number of coupon payments, as per the financial terms of the bond.
- It calculates the interest for the time period between
issueandsettlementdates. - The function accounts for the interest period and divides the annual interest by the frequency of payments.
- The
basisparameter determines how days are counted in the year. - The
calc_methodparameter determines whether the first interest period is included fully or calculated proportionally.
Examples:¶
1. Accrued Interest for Semi-annual Payments:¶
Result: 15.00.
2. Accrued Interest for Quarterly Payments:¶
Result: 5.11.
3. Accrued Interest using Actual/360 Basis:¶
Result: 4.86.
4. Accrued Interest with calc_method = FALSE (Proportional First Period):¶
Result: 15.00.
Notes:¶
- If the
issue,first_interest, orsettlementdates are not valid dates or ifsettlementoccurs beforeissue, Excel returns a#VALUE!or#NUM!error. - The frequency must be
1,2, or4. Any other value will also result in an error. - The basis parameter determines how the number of days in a year is calculated, impacting the accrued interest.
- The calc_method parameter affects whether interest is accrued for the entire first period (
TRUE) or proportionally (FALSE).
Applications:¶
- Bond Valuation: Quickly determine how much interest is owed between coupon payments for fixed-income security.
- Financial Analysis: Used in portfolio management and trading of interest-bearing securities.
- Investment Accounting: Helps calculate interest income for tax and audit purposes.
Tip: When using the
ACCRINTfunction, ensure all date inputs are valid Excel date values (e.g.,DATE(year, month, day)), as invalid dates will prevent the function from working correctly.