Quantcast
Channel: SQLBI
Viewing all articles
Browse latest Browse all 434

Year-over-year comparison using the same number of days in #dax

$
0
0

When you use the time intelligence functions in DAX, it is relatively easy to filter the same dates selection in the previous year by using the SAMEPERIODLASTYEAR or DATEADD functions. However, if you follow the best practices, it is likely that you have a full date table for the current year, which includes many days in the future. If you are in the middle of March 2017, you have sales data until March 15, 2017, so you might want to compare such a month with the same number of days in 2016. And the same when you compare the Q1, or the entire year.

A common solution is to translate this request in a month-to-date (MTD) or quarter-to-date (QTD) comparison, but depending on how you implement this, you might not obtain a reliable result. For example, you might assume that the current date on your PC is the boundary of the dates you want to consider, but you probably have a few hours if not days of latency in the data in your database, so you should constantly fix the offset between the current day and the last day available in your data.

Thus, why not simply relying on the data you have to make an automatic decision? This is the purpose of the technique described in the article Compare equivalent periods in DAX that I wrote on SQLBI, where I show several approaches optimized for Power BI, Excel, and SSAS Tabular, which are different depending on the version you use.

Personally, the version I prefer is the one with the variables in DAX:

[PY Last DaySelection] :=
VARLastDaySelection =
    LASTNONBLANK('Date'[Date], [Sales Amount] )
VARCurrentRange =
    DATESBETWEEN('Date'[Date], MIN('Date'[Date] ), LastDaySelection )
VARPreviousRange =
    SAMEPERIODLASTYEAR(CurrentRange )
RETURN
    IF(
        LastDaySelection > MIN('Date'[Date] ),
        CALCULATE([Sales Amount], PreviousRange )
    )
It’s longer, but much more readable. More details and examples you can download for Excel and Power BI are available in the article.

Viewing all articles
Browse latest Browse all 434

Trending Articles