Get price per $100 face value with odd last period
=ODDLPRICE(sd, md, id, rate, yld, redem, freq, [basis])
| Parameter | Description |
|---|---|
sd |
Settlement date of the security. |
md |
Maturity date of the security. |
id |
Last interest date of security. |
rate |
Interest rate of security. |
yld |
Annual required rate of return. |
redem |
Redemption value per $100 face value. |
freq |
Coupon payments per year (annual = 1, semiannual = 2; quarterly = 4). |
basis |
[optional] Day count basis (see below, default =0). |
Assume we need to calculate the price per $100 face value of a bond with a last interest date of 15-Oct-2017 and a settlement date of 5-Feb-2018. The
=ODDLPRICE(C8,C10,C9,C6,C7,C5,C11,C12)
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
=ODDLPRICE(DATE(2018,2,5),DATE(2018,6,15),DATE(2017,10,15),0.05,0.06,100,2,0)