Quick Answer

INTRATE Function

Calculates the interest rate for a fully invested security.

✓ Excel✓ Google SheetsExcel All versions

Syntax

INTRATE
(settlement, maturity, investment, redemption, [basis])

Parameters

ParameterDescriptionRequired
settlementDate the security is purchased.Required
maturityDate the security expires.Required
investmentAmount invested in the security.Required
redemptionAmount received at maturity.Required
basisDay-count convention (0 = US 30/360, default).Optional

Basic Example

Interest rate for a short-term investment

=INTRATE(DATE(2024,1,1), DATE(2024,12,31), 95000, 100000)
Result5.41%

Investing $95,000 and receiving $100,000 after one year implies a simple annual interest rate of about 5.41%.

Advanced Examples

Example 1: With actual/365 basis

Money market instrument

Use basis 3 for actual/365

=INTRATE(DATE(2024,1,1), DATE(2024,12,31), 95000, 100000, 3)
Result: Interest rate using actual/365
Basis 3 uses actual days and a 365-day year.

How INTRATE Works

INTRATE calculates the simple interest rate using the formula (redemption - investment) / investment * (days per year / days to maturity). It is used for short-term discount instruments.

1
Enter settlement
Type the settlement
2
Enter maturity
Type the maturity
3
Enter investment
Type the investment
4
Enter redemption
Type the redemption
5
Calculate
Press Enter to get the result.

Important Notes & Limitations

  • Settlement must be before maturity.

  • Investment and redemption are absolute amounts, not per $100.

  • Basis affects the day count.

Common Errors & Fixes

#NUM! errorInvalid dates or investment/redemption values.

Fix: Verify all inputs.

#VALUE! errorDates are not recognized.

Fix: Use DATE function or valid date serial numbers.

Download Practice File

Practice INTRATE with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the INTRATE function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

What is the difference between INTRATE and DISC?
INTRATE is based on the investment amount. DISC is based on the redemption value.
When is INTRATE used?
It is used for fully invested short-term securities.