Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a report which contains a year slicer and a month slicer so you can select a specific scope for the related charts. Some charts will only look at the selected month in the selected year, but I need other charts to take the selected year and month and specifically look for the twelve months up to the selected year+month.
So for example if you select:
Then
I can't get Chart 2 to function propertly. The DAX query I'm working with seems to get close, but somehow doesn't do what I require:
Sales12M = CALCULATE ( SUM('data'[Sales]) / 1000; DATESBETWEEN ( 'Date'[YearMonthnumber]; SAMEPERIODLASTYEAR ( NEXTDAY ( LASTDATE ( 'YearMonths'[YearMonthnumber] ) ) ); LASTDATE ( 'YearMonths'[YearMonthnumber] ) ) )
I have tried fiddling around with a separate Date dates by day table and another YearMonths table that only shows 2016-01-01, 2016-02-01, etc.
What am I missing here?
Thanks in advance!
In your DAX formular, you iterated by MONTH with
DATESBETWEEN ( 'Date'[YearMonthnumber];....
And then used the NEXTDAY() function which pushes by a day. Try using the DAY iteration like this
Sales12M = CALCULATE ( SUM('data'[Sales]) / 1000; DATESBETWEEN ( 'Date'[Date]; SAMEPERIODLASTYEAR ( NEXTDAY ( LASTDATE ( 'YearMonths'[Date] ) ) ); LASTDATE ( 'YearMonths'[Date] ) ) )
I was wondering if you got this to work. I am having the same issue. I am about to just give up 😞
Using 2 slicer: Year and Month:
Use this Dax Code
12M = CALCULATE ( Sum(Sales[Value]), DATESBETWEEN ( 'Date'[Date], DATEADD ( FIRSTDATE ( 'Date'[Date] ), -1; YEAR ), LASTDATE ( 'Date'[Date] ) ) )