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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Moving Average calculated from "today"

Hi everyone,

 

I've got a moving average measure:

 

30 Day Moving Average = 
AVERAGEX (
DATESINPERIOD (
'Date'[Date],
LASTDATE ( 'Date'[Date] ),
-30,
DAY
),
[Total Stream]
)

and I was wondering how to only calculate it back from the current day as at the moment it projects another 30 days onto a line chart.

 

Many thanks

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

One suggestion is to add a column to your date table as follows

 

Days from Today = INT(NOW() - Dates[Date])

 

Then you can simply add a Visual, Page or Report filter that only shows data for when [Days from Today] is > 0 (or between a range)

 

There are other benefits to adding such a column - so I highly recommend.

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Employee
Employee

One suggestion is to add a column to your date table as follows

 

Days from Today = INT(NOW() - Dates[Date])

 

Then you can simply add a Visual, Page or Report filter that only shows data for when [Days from Today] is > 0 (or between a range)

 

There are other benefits to adding such a column - so I highly recommend.

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Anonymous
Not applicable

Thanks for the reply.  I ended up using the "Age" function on a duplicate of the date column and selected "Day" as the granularity.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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