Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest Fabric, Power BI, and SQL learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
Calculated column
Calculated table
Measure
Visual calculation
Returns the bond-equivalent yield for a Treasury bill.
TBILLEQ(<settlement>, <maturity>, <discount>)
Term | Definition |
---|---|
settlement |
The Treasury bill's settlement date. The security settlement date is the date after the issue date when the Treasury bill is traded to the buyer. |
maturity |
The Treasury bill's maturity date. The maturity date is the date when the Treasury bill expires. |
discount |
The Treasury bill's discount rate. |
The Treasury Bill's bond-equivalent yield.
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.
TBILLEQ is calculated as:
where:
settlement and maturity are truncated to integers.
An error is returned if:
This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
Data | Description |
---|---|
3/31/2008 | Settlement date |
6/1/2008 | Maturity date |
9.14% | Percent discount rate |
The following DAX query:
EVALUATE
{
TBILLEQ(DATE(2008,3,31), DATE(2008,6,1), 0.0914)
}
Returns the bond-equivalent yield for a Treasury bill using the terms specified above.
[Value] |
---|
0.094151493565943 |
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest Fabric, Power BI, and SQL learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today