Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
david7f
Frequent Visitor

DAX

I´m trying to analyze the impact of marketing campaings. To do so I use a DAX measure to calculate the total sales over a period of time. That period normally goes beyond natural years (i.e. 2016-10 to 2017-02). I have the year-month as integer as row context. The measure I´m using to get the cumulated sales for the selected period is this (and it´s working fine).

 

CampaignSalesCummulative=CALCULATE(
 SUM([CampaignSales]);
 FILTER(
  ALLSELECTED('Calendar'[Year-Month Integer]);
  ISONORAFTER('Calendar'[Year-Month Integer]; MAX('Calendar'[Year-Month Integer]); DESC)
 )
)

 

the issue arieses when´I´m trying to retrieve in the same row the cumulated sales for year t-1. With the same period mentioned above it would be 2015-10 to 2016-02. I can get the data for the period 1 year back with the below dax formula but I´m not able to make it cumulative2017-12-05 10_20_19-Marketing Campaign.xlsx - Excel.jpg.

 

CampaignSalesCummulative_LY=CALCULATE([CampaignSalesCummulative2];DATEADD('Calendar'[Date];-1;YEAR))

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @david7f,

 

To return the cumulative total for last year same period, you can create a measure below: 

 

CumulativeTotalLY = CALCULATE(SUM(Sheet1[Amount]),FILTER(ALL('Sheet1'),YEAR('Sheet1'[Date])=YEAR(MAX('Calendar'[Date]))-1 && MONTH('Sheet1'[Date])<=MONTH(MAX('Calendar'[Date]))))

 

q2.PNG

 

You can see attached pbix file. 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

First of all thanks for your time to provide a solution. Your formula works fine but the issue is that marketing campaigns normally go beyond calendar year. I´ve completed in your pbix file my real problem. As can be seen I can get the cumulated amount for the selected period (i.e. 20177 to 20182), that works fine. But if i try to show in the same line the cumulated amount for the previous year it just doesn´t work, te row filter context breaks it.

 

https://www.dropbox.com/s/id3xtmrppid94f5/CumulativeTotalLY.pbix?dl=0

 

2017-12-07 10_59_33-CumulativeTotalLY - Power BI Desktop.png

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.