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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
RogerSteinberg
Post Patron
Post Patron

Slicer dates not correctly filtering measures such as 30 day rolling average

Hi all,

 

I have a line graph showing two lines:

1. daily active users

2. 30 day rolling average of daily active users.

 

After modifiying my slicer date range (9/1/2018 - 9/30/2018), my data for daily active user are correctly filtered but the 30 day moving average is always showing 30 days more worth of data and one day less. 

 

mvgaverage.png

 

 

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @RogerSteinberg,

 

What is your formula of your rolling average? I made one sample here for your reference. Everything worked well here.

 

Moving_Average = 
CALCULATE (
    AVERAGEX ( 'Table1', Table1[daily users] ),
    DATESINPERIOD ( Table1[date], LASTDATE ( Table1[date] ), -30, DAY )
)

Capture.PNG

 

For more details, please check the pbix as attached. If any other question, kindly share your pbix to me.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @RogerSteinberg,

 

What is your formula of your rolling average? I made one sample here for your reference. Everything worked well here.

 

Moving_Average = 
CALCULATE (
    AVERAGEX ( 'Table1', Table1[daily users] ),
    DATESINPERIOD ( Table1[date], LASTDATE ( Table1[date] ), -30, DAY )
)

Capture.PNG

 

For more details, please check the pbix as attached. If any other question, kindly share your pbix to me.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors