Dapatkan bunga yang masih harus dibayar pada saat jatuh tempo
=ACCRINTM(id, sd, rate, par, [basis])
| Parameter | Deskripsi |
|---|---|
id |
Issue date of the security. |
sd |
Settlement date of the security. |
rate |
Annual coupon rate. |
par |
Par value of security. |
basis |
[optional] Day count basis (see below, default =0). |
In the example shown, we want to calculate accrued interest for a bond with a 5% coupon rate. The issue date is 5-Apr-2016, the settlement date is 1-F
=ACCRINTM(C7,C8,C6,C5,C10)
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
=ACCRINTM(DATE(2016,4,5),DATE(2019,2,1),0.05,1000,0)