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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I was trying to replicate Alberto Ferrari's method of Rolling 12 month average (Average of -13 to -1 month), but it is not matching with the manual calculation. Any idea why it is so?
My regular calendar table is _Calendar, and the disconnected calendar table with inactive relationship is '12m Cal'
Avg Rolling 12M =
VAR RefDate = MAX(_Calendar[Date])
VAR PrevDates =
DATESINPERIOD(
'12m Cal'[Date],
EDATE(RefDate,-1),
-12,
MONTH
)
VAR Result =
CALCULATE(
DIVIDE([MTD],12),
REMOVEFILTERS('_Calendar'),
KEEPFILTERS(PrevDates),
USERELATIONSHIP('12m Cal'[Date], _Calendar[Date])
)
RETURN
Result
Solved! Go to Solution.
@arnabmit , Check the suggestion from SpartaBI. Try like
12 Month Avg = CALCULATE(AverageX(Values('Date'[MONTH Year]),calculate(Sum('Table'[Value)))
,DATESINPERIOD('Date'[Date ],Eomonth(MAX('Date'[Date ])-1) ,-12,MONTH))
@arnabmit , Check the suggestion from SpartaBI. Try like
12 Month Avg = CALCULATE(AverageX(Values('Date'[MONTH Year]),calculate(Sum('Table'[Value)))
,DATESINPERIOD('Date'[Date ],Eomonth(MAX('Date'[Date ])-1) ,-12,MONTH))
@arnabmit I'm not sure why you have another disconnected calendar table.
You can PM me and we can take a look together at your model in zoom if you want
It is as per Alberto Ferarri's method here https://www.youtube.com/watch?v=ACvYaXnpyCM
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 38 | |
| 36 | |
| 29 | |
| 28 |
| User | Count |
|---|---|
| 127 | |
| 88 | |
| 78 | |
| 66 | |
| 65 |