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
JanCab
Frequent Visitor

Calculating future rolling average

Hello,

 

I would like to ask you for your help with a DAX formula which would calculate value of future unit sales, based on rolling average of previous 12 month.

 

See below - there are blue values as history and red ones as rolling average.

 

JanCab_0-1648580446935.png

 

I was able to calculate rolling average for historical values but not for future - basically from already calculated values, as the average is rolling.

 

Note - I do have a calendar table in place which is related to sales data.

 

Hope it makes sense.

 

Thank you very much! 

 

 

4 REPLIES 4
Anonymous
Not applicable

What is the solution for this?

Is exactly what I need!

Thank you!

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your correctly, but I think the numbers are showing 14 months rolling average.

I tried to solve this in Power Query.

Please check the attached file. I do not know how your calendar table looks like, but I hope this helps to provide an idea.

Thanks.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Dear all,

 

Let me update the topic, as I slightly move on, but still without solution. 

 

To recap - I have been trying to calculate forecast of future sales based sum of rolling average of last 12 months in DAX. Please find below a screenshot from an Excel calculation (formulas + results) -> blue is history, red is forecast:

 

JanCab_0-1649100369410.png

 

I put together a formula, which calculates average but slightly incorrectly - I do not know, what the problem is...:

 

Forecast 2 =

VAR LastDateSale = [Last_date]
VAR _MONTHRANK = CALCULATE(MAX('Date'[Rank]),FILTER(ALL('Date'),'Date'[Date] = LastDateSale))
VAR Rolling12_Months_AVG =
CALCULATE( AVERAGE('Tab_pro_test'[Sold_Units]), DATESINPERIOD ( 'Date'[Date], LASTDATE ( 'Date'[Date] ), -12, MONTH ))

return
if (
SELECTEDVALUE('Date'[Rank])>= _MONTHRANK,
CALCULATE(Rolling12_Months_AVG,'Date'[Date] = LastDateSale))

 

JanCab_1-1649100885250.png

The PBIX file is saved here: https://file.io/buLgvtZ1Asmi 

 

Thank you very much for any hint! 

Hi,

Thank you very much for the sample file and solution. You calculation is OK, but I would need something like this preferably in DAX, if it is possible... 

Thank you. 

 

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.