Excel ACCRINTM Function

The ACCRINTM function calculates accrued interest for securities that pay interest at maturity, essential for bond valuation and analysis.

ExcelExcel
Google SheetsGoogle Sheets
financial
intermediate
Syntax Preview
ExcelExcelGoogle SheetsGoogle Sheets
=ACCRINTM(issue, settlement, rate, par, [basis])
Understanding the ACCRINTM Function

Practical Examples

Basic Treasury Bill Interest Calculation

Calculate accrued interest for a Treasury bill purchased between issue and maturity

Result: Accrued interest amount

Corporate Zero-Coupon Bond Analysis

Calculate interest for a corporate bond that pays at maturity

Result: Accrued interest with actual/actual basis

International Security with European Basis

Calculate accrued interest using European 30/360 day count convention

Result: Interest using European convention

Multiple Securities Comparison

Compare accrued interest across different securities with varying rates and dates

Result: Accrued interest from cell references

Error Handling for Bond Calculations

Prevent errors when calculating interest for securities with invalid parameters

Result: Interest or custom error message

Common Errors and Solutions

#NUM! Error

ACCRINTM returns #NUM! error

Cause:

Settlement date is before or equal to issue date, or negative rate/par values

Solution:

Verify that settlement date is after issue date and all rates and par values are positive

Prevention:

Use data validation or IF statements to check date order: =IF(settlement<=issue, "Invalid Dates", ACCRINTM(...))

Example:

#VALUE! Error

ACCRINTM returns #VALUE! error

Cause:

Date parameters stored as text rather than date serial numbers

Solution:

Convert text dates using DATEVALUE or reconstruct with DATE(year, month, day) function

Prevention:

Use DATE functions for all date inputs and verify with =ISNUMBER(issue) that dates are stored as numbers

Example:

Incorrect Results

ACCRINTM produces unexpected interest amounts

Cause:

Wrong day count basis selected for the security type

Solution:

Verify the correct basis: US Treasury uses basis 1, corporate bonds use basis 0, money market uses basis 2

Prevention:

Create a reference table mapping security types to correct basis values and document assumptions

Example:

Best Practices and Pro Tips

Choose the Correct Day Count Basis

The basis parameter significantly impacts calculation accuracy. US Treasury securities typically use basis 1 (Actual/actual), corporate bonds use basis 0 (30/360), and money market instruments use basis 2 (Actual/360). Always verify the standard convention for your security type.

Implement Robust Date Validation

Date errors are the leading cause of ACCRINTM failures. Build validation into models by checking that settlement > issue before calculations run. Use data validation to restrict date entry ranges.

ACCRINTM vs ACCRINT

Use ACCRINTM for securities paying interest at maturity (Treasury bills, zero-coupon bonds). Use ACCRINT for securities with periodic coupon payments. Using the wrong function produces incorrect valuations.

Integrate with Complementary Functions

ACCRINTM rarely stands alone. Combine it with PRICE for full bond valuation, YIELD for return calculations, and DURATION for risk analysis.

Platform Compatibility

ACCRINTM works identically in Excel 2003+ and Google Sheets. Built-in for Excel 2007 and later, requires Analysis ToolPak in Excel 2003.

Frequently Asked Questions
Related Formulas and Next Steps

Need Help with Excel ACCRINTM Function?

Stop struggling with formula syntax. Use AskFormulas to generate validated formulas instantly with our AI-powered tool.

Example Excel formula:

Related Formulas

ACCRINT Function in Excel

The ACCRINT function calculates accrued interest for a security that pays periodic interest, enabling accurate financial reporting and bond valuation.

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
FV Function in Excel

The FV function calculates future value of investments with constant payments and interest rate. Master retirement planning and savings goals with examples.

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
PV Function in Excel

The PV function calculates the present value of an investment or loan with constant periodic payments and a constant interest rate. Master PV with examples,...

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
DOLLARDE

Convert fractional dollar prices to decimals with DOLLARDE. Essential for bond trading, stock quotes, and financial analysis.

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated