Events
Become a Certified Fabric Data Engineer
Jan 14, 11 PM - Mar 31, 11 PM
Check your eligibility for an exam discount offer and register for free live sessions to prepare for Exam DP-700.
Learn moreThis 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 previous coupon date before the settlement date.
COUPPCD(<settlement>, <maturity>, <frequency>[, <basis>])
Term | Definition |
---|---|
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. |
frequency |
The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4. |
basis |
(Optional) The type of day count basis to use. If basis is omitted, it is assumed to be 0. The accepted values are listed below this table. |
The basis
parameter accepts the following values:
Basis |
Day count basis |
---|---|
0 or omitted | US (NASD) 30/360 |
1 | Actual/actual |
2 | Actual/360 |
3 | Actual/365 |
4 | European 30/360 |
The previous coupon date before the settlement date.
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.
frequency and basis are rounded to the nearest integer.
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 |
---|---|
25-Jan-11 | Settlement date |
15-Nov-11 | Maturity date |
2 | Semiannual coupon (see above) |
1 | Actual/actual basis (see above) |
The following DAX query:
EVALUATE
{
COUPPCD(DATE(2011,1,25), DATE(2011,11,15), 2, 1)
}
Returns the previous coupon date before the settlement date, for a bond using the terms specified above.
[Value] |
---|
11/15/2010 12:00:00 AM |
Events
Become a Certified Fabric Data Engineer
Jan 14, 11 PM - Mar 31, 11 PM
Check your eligibility for an exam discount offer and register for free live sessions to prepare for Exam DP-700.
Learn more