Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
owlet0214
Helper I
Helper I

Moving Average

Hello, 

 

I made a moving average with reference to "https://community.powerbi.com/t5/Desktop/Moving-Average/m-p/43041", but I can't.

I tried other methods, but I couldn't, so I'll consult you.

 

moving_average2.PNG

 

My DAX is below.

The table above shows the "fixday" hierarchy.

 

MovingAverage7day2 =
CALCULATE (
AVERAGEX ( 'Table', 'Table'[count] ),
DATESINPERIOD (
'Table'[fixday],
LASTDATE ('Table'[fixday] ),
-7,
day
)

)

 

When I tried with the following formula, only the specified period part was displayed,

but it seems that "SUM" does not work, and "count / 7" are lined up.

 

I don't think that the above formula and the formula below work for the function that aggregates the filtered periods.

 

CALCULATE(
SUM('Table'[count])/7,
FILTER('Table','Table'[count] < DATE(2020,05,16) && 'Table'[count] > DATE(2020,05,10)))
)

 

I need help.

3 REPLIES 3
amitchandak
Super User
Super User

@owlet0214 , Join you date with date calendar and try. I assumed that fixday is a date

 

Rolling 7 = CALCULATE(Average('Table'[count]),DATESINPERIOD(Date[Date],MAX('Table'[fixday]),-7,Day))

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...


Appreciate your Kudos.

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Thank you, I have a meeting so I'll try it later.

Thank you very much. I was able to count well.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.