Get accrued interest periodic
=ACCRINT(id, fd, sd, rate, par, freq, [basis], [calc])
| Parameter | Description |
|---|---|
id |
Issue date of the security. |
fd |
First interest date of security. |
sd |
Settlement date of security. |
rate |
Interest rate of security. |
par |
Par value of security. |
freq |
Coupon payments per year (annual = 1, semiannual = 2; quarterly = 4). |
basis |
[optional] Day count basis (see below, default =0). |
calc |
[optional] Calculation method (see below, default = TRUE). |
In the example shown, we want to calculate accrued interest for a bond with a 5% coupon rate. The issue date is 5-Apr-2018, the settlement date is 1-F
=ACCRINT(C9,C9,C8,C6,C5,C12,C13,TRUE)
In Excel, dates are serial numbers. Generally, the best way to enter valid dates is to use cell references, as shown in the example. To enter valid da
=ACCRINT(DATE(2018,10,15),DATE(2018,10,15),DATE(2019,2,1),0.05,1000,2,0,TRUE)