Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
@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 ()
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 34 | |
| 33 | |
| 30 |