Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
@Anonymous this was a great post put on by you which I have used. I rolling 13 months. I need the data to be a Rolling 12 months.
How can I do this please?
Can @Anonymous or anyone else help?
This is the link - https://community.powerbi.com/t5/Desktop/Rolling-13-months-DAX/td-p/663677
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
Please update the measures like this.
2Sales Rolling 12 ACT =
VAR Maximum_Date =
MAX ( 'Rolling Calendar'[Date] )
VAR Minimum_Date =
EDATE(Maximum_Date,-11)
VAR Selected_Date =
MAX ( 'Calendar'[Date] )
RETURN
IF (
Selected_Date <= Maximum_Date
&& Selected_Date >= Minimum_Date,
[Sales ACT],
BLANK ()
)
2Sales Rolling 12 Month ACT (Totals) =
IF (
HASONEFILTER ( 'Calendar'[Date] ),
[2Sales Rolling 12 ACT],
SUMX ( 'Calendar', [2Sales Rolling 12 ACT] )
)
Also please check the pbix as attached.
Hi @Anonymous ,
Please update the measures like this.
2Sales Rolling 12 ACT =
VAR Maximum_Date =
MAX ( 'Rolling Calendar'[Date] )
VAR Minimum_Date =
EDATE(Maximum_Date,-11)
VAR Selected_Date =
MAX ( 'Calendar'[Date] )
RETURN
IF (
Selected_Date <= Maximum_Date
&& Selected_Date >= Minimum_Date,
[Sales ACT],
BLANK ()
)
2Sales Rolling 12 Month ACT (Totals) =
IF (
HASONEFILTER ( 'Calendar'[Date] ),
[2Sales Rolling 12 ACT],
SUMX ( 'Calendar', [2Sales Rolling 12 ACT] )
)
Also please check the pbix as attached.
Hi @Anonymous
Would it help to use
Sales Rolling 12 ACT = VAR Maximum_Date = MAX ( 'Rolling Calendar'[Date] ) VAR Minimum_Date = DATE ( YEAR ( Maximum_Date ) - 1; MONTH ( Maximum_Date ); DAY( Maximum_Date ) ) VAR Selected_Date = MAX ( 'Calendar'[Date] ) RETURN IF ( Selected_Date <= Maximum_Date && Selected_Date > Minimum_Date; [Sales ACT]; BLANK () )
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
44 | |
36 |