ACCRINT function in Excel
Returns the accrued interest for a security that pays periodic interest
=ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method])ACCRINT syntax and parameters
Eight arguments, six required.
- issueanyRequired
The security's issue date.
- first_interestanyRequired
The security's first interest date.
- settlementanyRequired
The security's settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.
- ratenumberRequired
The security's annual coupon rate.
- parnumberRequired
The security's par value. If you omit par, ACCRINT uses $1,000.
- frequencynumberRequired
The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4.
- basisanyOptional
The type of day count basis to use.
- calc_methodbooleanOptional
A logical value that specifies the way to calculate the total accrued interest when the date of settlement is later than the date of first_interest. A value of TRUE (1) returns the total accrued interest from issue to settlement. A value of FALSE (0) returns the accrued interest from first_interest to settlement. If you do not enter the argument, it defaults to TRUE.
ACCRINT examples
Formulas you'll actually reuse.
Interest accrued on a $1,000 bond two months into its first semi-annual period:
=ACCRINT(DATE(2026, 3, 15), DATE(2026, 9, 15), DATE(2026, 5, 15), 5%, 1000, 2, 0)Result
8.3333The same from cells, on an actual/actual basis (1) — what the buyer owes the seller on top of the clean price:
=ACCRINT(B2, C2, D2, E2, F2, 2, 1)
ACCRINT in Google Sheets
Same name — your formula ports as-is.
Try ACCRINT in the playground
Edit the example — nothing to install.
Preloaded with the ACCRINT formula from Example 1 — change anything and watch it respond.
ACCRINT errors
What they mean — and the fixes.
#NUM!issue is on or after settlement, or rate or par is zero or negative.
Related functions
More ways Excel gets this done.
- ACCRINTMReturns the accrued interest for a security that pays interest at maturityFinancialGoogle Sheets
- AMORDEGRCReturns the depreciation for each accounting period by using a depreciation coefficientFinancialNo Google Sheets equivalent
- AMORLINCReturns the depreciation for each accounting periodFinancialGoogle Sheets
- COUPDAYBSReturns the number of days from the beginning of the coupon period to the settlement dateFinancialGoogle Sheets
- COUPDAYSReturns the number of days in the coupon period that contains the settlement dateFinancialGoogle Sheets
- COUPDAYSNCReturns the number of days from the settlement date to the next coupon dateFinancialGoogle Sheets