Please note javascript is required for full website functionality.

Blog

Power Pivot Principles: The A to Z of DAX Functions – COUPDAYS

18 October 2022

In our long-established Power Pivot Principles articles, we continue our series on the A to Z of Data Analysis eXpression (DAX) functions.  This week, we look at COUPDAYS.

 

The COUPDAYS function

When you invest in a coupon bond, that is a bond that pays interest before maturity, you can evaluate your investment more accurately if you know the number of days in the coupon period.  To find that value you can use the COUPDAYS function, which is short for coupon days

The COUPDAYS function employs the following syntax to operate:

COUPDAYS(settlement, maturity, frequency, [basis])

The COUPDAYS function has the following arguments:

  • settlement: this represents 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: this is the security's maturity date, i.e. when the security expires
  • frequency: The number of coupon payments per year.  For annual payments, frequency is 1; for semiannual, frequency is 2; for quarterly, frequency is 4These are the only options (see below)
  • basis: the type of day count basis to use.  This is optional.  There are five options:

It should be further noted that:

  • Microsoft Excel stores dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after December 30, 1899
  • dates should be entered using the DATE function, or as results of other formulae or functions.  For example, use =DATE(2020,2,29) for the 29th of February, 2020.  Problems may occur if dates are entered as text
  • 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, 30 years after the January 1, 2008, issue date
  • all arguments are truncated to integers
  • an error is returned if:
        o   settlement or maturity is not a valid date
        o   frequency is any number other than 1, 2, or 4
        o   basis < 0 or if basis > 4
        o   settlement ≥ maturity
  • this function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Consider the following DAX example (not available in Power Pivot): 

EVALUATE
{
  COUPDAYS(DATE(2020, 1, 25), DATE(2020, 11, 15), 2, 1)
}

This would return the number of days (182) in the coupon period that contains the settlement date, where:

  • 25 January 2020 is the settlement date
  • 15 November 2020 is the maturity date
  • there are two [2] coupon payments per year (i.e. semi-annual coupon)
  • the day count basis used is an actual / actual basis.


Come back next week for our next post on Power Pivot in the Blog section.  In the meantime, please remember we have training in Power Pivot which you can find out more about here.  If you wish to catch up on past articles in the meantime, you can find all of our Past Power Pivot blogs here.

Newsletter