Please note javascript is required for full website functionality.

Blog

Power Pivot Principles: Introducing the Function PARALLELPERIOD

11 February 2020

Welcome back to the Power Pivot Principles blog.  This week, we are going to learn a new DAX function, PARALLELPERIOD.

In our previous blogs, we have introduced different methods to calculate the value for last month/year. This week we are going to introduce another new DAX function, PARALLELPERIOD, to calculate previous period value.  The DAX function PARALLELPERIOD returns a parallel period of dates by the given set of dates and a specified interval.  It has following syntax to operate:

PARALLELPERIOD ( <Dates>, <NumberOfIntervals>, <Interval> )


where:

  • <Dates> is the name of a column containing dates or a one column table containing dates
  • <NumberOfIntervals> is the number of the intervals
  • <Interval> is the parameter from one of: MONTH, QUARTER, YEAR.

Let’s look at one simple example.  Consider the following data table (not displayed in full):

It is a simple table containing the column of Date and Sales Amount. We want to create a Pivot Table to compare current month sales to previous month. In order to get the measure required, we import the Sales table into the PowerPivot interface.

We also create a Calendar table as described in previous blog and the result would be:

The Calendar table and Sales table have the following one-to-many relationship on the attribute Date.

We write the PARALLELPERIOD measure as:

=CALCULATE(SUM(Sales[Sales Amount]),PARALLELPERIOD(‘Calendar’[Date],-1,MONTH))


This measure calculates the total of sales amount in Sales table with the filter defined as the PARALLELPERIOD expression, which filters the Date context to the previous month.

We export the result to a PivotTable with Date as the row and Sum of Sales Amount and PreviousMonthSales as the columns:

As indicated by the table above, the PreviousMonthSales shows the amount for the previous month for different years.

It should be noted that PARALLELPERIOD differs from DATEADD in that PARALLELPERIOD always returns full periods at the given granularity level instead of the partial periods that DATEADD returns. For example, if you have a selection of dates that starts at March 10 and finishes at March 21 of the same year, and you want to shift that selection forward by one month then the PARALLELPERIOD function will return all dates from the next month (April 1 to April 30) whereas, if DATEADD is used instead, the result will include only dates from April 10 to April 21.

It should also be noted that this DAX function is not supported for use in what is known as DirectQuery mode.


That’s it for this week!


Stay tuned 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