cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
AndyC
Helper II
Helper II

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
Microsoft
Microsoft

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
Microsoft
Microsoft

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!

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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors