This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi everyone!
Can you help me out with a rolling (or moving ?) average formula please ?
Here is the pbix file :https://drive.google.com/file/d/1tD0vPXoF9NbRuan487Rv9wdFiCuneq7v/view?usp=sharing
I've created the measure "Balance" that i'm showing in a line graph like so :
Now i'm trying to make the same type of graph but with the averaged "Balance" for a 3 month roll, like so :
So the first marker to show on the graph would be the average of "Balance" for January, February and March.
The second marker would be the average of "Balance" for February, March and April.
And so on.
Can you help me out with that please ? I found the new DAX formula MOVINGAVERAGE on the microsoft site, but I can't use it in my version of pbi desktop even after the update.
Thank you very much
Solved! Go to Solution.
hI @AnthNC ,
As one of the best practices, create a separate calendar/dates table. Relate that to your fact table and create this measure:
Avg Balance R3M =
CALCULATE (
AVERAGEX ( ALL ( 'Calendar'[Year], 'Calendar'[Month] ), [Balance] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), - 3, MONTH )
)
Please attached file for the details and to this link for further explanation -https://www.sqlbi.com/articles/rolling-12-months-average-in-dax/
Thank you very much danextian.
That's exactly what i needed.
hI @AnthNC ,
As one of the best practices, create a separate calendar/dates table. Relate that to your fact table and create this measure:
Avg Balance R3M =
CALCULATE (
AVERAGEX ( ALL ( 'Calendar'[Year], 'Calendar'[Month] ), [Balance] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), - 3, MONTH )
)
Please attached file for the details and to this link for further explanation -https://www.sqlbi.com/articles/rolling-12-months-average-in-dax/
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 28 | |
| 26 | |
| 25 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 22 | |
| 19 | |
| 18 |