YIELDDISC

Updated on

YIELDDISC is a DAX function that returns the annual yield for a discounted security.

Syntax

YIELDDISC(
   Settlement,
   Maturity,
   Pr,
   Redemption,
   Basis
)
Argument Properties Description
Settlement The security’s settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.
Maturity The security’s maturity date. The maturity date is the date when the security expires.
Pr The security’s price per $100 face value.
Redemption The security’s redemption value per $100 face value.
Basis Optional The type of day count basis to use.

Return Values

The annual yield.

Remarks

  • Dates are stored as sequential serial numbers so they can be used in calculations. In DAX, December 30, 1899 is day 0, and January 1, 2008 is 39448 because it is 39,448 days after December 30, 1899.

  • The settlement date is the date a buyer purchases a coupon, such as a bond. The maturity date is the date when a coupon expires. For example, suppose a 30-year bond is issued on January 1, 2008, and is purchased by a buyer six months later. The issue date would be January 1, 2008, the settlement date would be July 1, 2008, and the maturity date would be January 1, 2038, which is 30 years after the January 1, 2008, issue date.

  • settlement and maturity are truncated to integers.

  • basis is rounded to the nearest integer.

  • An error is returned if:

    • settlement or maturity is not a valid date.
    • settlement ≥ maturity.
    • pr ≤ 0.
    • redemption ≤ 0.
    • basis < 0 or basis > 4.
  • This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Example

Data
16-Feb-08 Settlement date
1-Mar-08 Maturity date
99.795 Price
$100 Redemption value
2 Actual/360 basis

The following DAX query:

EVALUATE
{
  YIELDDISC(DATE(2008,2,16), DATE(2008,3,1), 99.795, 100, 2)
}

Returns the security’s annual yield, given the terms specified above.

[Value]
0.0528225719868583

Other functions related to YIELDDISC are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/yielddisc-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy