Purpose
Return value
Syntax
=DISC(settlement,maturity,pr,redemption,[basis])
- 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).
Using the DISC function
The Excel DISC function returns the discount rate for a security. A discounted security does not pay periodic interest, but has a specified redemption value at maturity. The return on a discounted security is the difference between the price and redemption value.
Discount rate is based on the concept of the time value of money. The discount rate is the interest used to convert between future value and present value. A future value can be “discounted” by a given interest rate to determine the present value.
Example
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-2017 and the maturity date is 15-Jan-2020. The day count basis is US (NASD) 30/360. The formula in F5 is:
=DISC(C7,C8,C5,C9,C10)
With these inputs, the DISC function returns 4.16%, with percentage number format applied.
Entering dates
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 dates directly inside a function, you can use the DATE function . To illustrate, the formula below has all values hardcoded, and the DATE function is used to supply each of the two required dates:
=DISC(DATE(2017,7,6),DATE(2020,1,15),89.5,100,0)
Basis
The basis argument controls how days are counted. The DISC function allows 5 options (0-4) and defaults to zero, which specifies US 30/360 basis . This article on wikipedia provides a detailed explanation of available conventions.
| Basis | Day count |
|---|---|
| 0 or omitted | US (NASD) 30/360 |
| 1 | Actual/actual |
| 2 | Actual/360 |
| 3 | Actual/365 |
| 4 | European 30/360 |
Notes
- In Excel, dates are serial numbers .
- All dates, and basis , are truncated to integers.
- If dates are invalid (i.e. not actually dates) DISC returns #VALUE!
- DISC returns #NUM when: settlement >= maturity pr <= 0 or redemption <= 0 Basis is out-of-range
Purpose
Return value
Syntax
=DOLLARDE(fractional_dollar,fraction)
- fractional_dollar - Dollar component in special fractional notation.
- fraction - The denominator in the fractional unit. 8 = 1/8, 16 = 1/16, 32 = 1/32, etc.
Using the DOLLARDE function
The DOLLARDE function is a financial function which converts values pricing entered with a particular fractional notation into an equivalent decimal number. It can be used for securities where pricing is given to the nearest 1/8, 1/16, 1/32, etc.
For example, to convert the price “3 and 1/16” to an equivalent decimal value, you can use the DOLLARDE function like this:
=DOLLARDE(3.01,16) // returns 3.0625
Notice first argument shows the whole dollar value on the left, and the decimal component is used to express the numerator (.01 = 1, .11 = 11, etc.). The second argument is the denominator.
In the example shown, the formula column E, copied down, is:
=DOLLARDE(C6,D6)
On each row, the DOLLARDE function picks up the fractional dollar notation from column C and the denominator from column D.
Notes
- Both fractional_dollar and fraction arguments must be numeric values.
- The value for fraction must be greater than zero.