Get discount rate for a security
=DISC(settlement, maturity, pr, redemption, [basis])
| Parameter | Description |
|---|---|
settlement |
Settlement date of the security. |
maturity |
Maturity date of the security. |
pr |
Security price per $100 face value. |
redemption |
Security redemption value per $100 face value. |
basis |
[optional] Day count basis (see below, default =0). |
In the example shown, we want to find the discount rate for a bond with a price of $89.50 and a redemption value of $100. The settlement date is 6-Jul
=DISC(C7,C8,C5,C9,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
=DISC(DATE(2017,7,6),DATE(2020,1,15),89.5,100,0)