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
Bryanna
Helper II
Helper II

rolling past 3 month average

Hi,

 

I am trying to do a rolling past 3 month average so i can create a goal for my ordering volume but i need this to be able to be drilled up or down at the day, month,year level within a visual. 

 

Any thoughts?

 

Thanks!

 

3 REPLIES 3
Bryanna
Helper II
Helper II

@Greg_Deckler 

 

So i tried using this but this is at the month level I need it at the day level. 

Better Rolling Average =
    VAR __EndDate = MAX('KPI Scorecard'[DTE])
    VAR __3MonthsAgo = EOMONTH(__EndDate, -3)
    VAR __StartDate = DATE(YEAR(__3MonthsAgo), MONTH(__3MonthsAgo), 1)
    VAR __Table =
        SUMMARIZE(
            FILTER(ALL('KPI Scorecard'),[DTE]>=__StartDate && [DTE]<=__EndDate),
            'Calendar Table'[Month],
            "__Value",([Domestic Lines Shipped])
        )
RETURN
    AVERAGEX(__Table,[__Value])
 
 
I also have this that does it at the day level but the total still is an average. Is there a way i can take this measure so when i drill up or down on a visual that it has the average by day but then sums those averages for the entire month and then quarter, year etc.
29 = var maxdate = MAX('Calendar Table'[Date])
var s = CALCULATE('KPI Scorecard'[Domestic Lines Shipped],
DATESINPERIOD('Calendar Table'[Date], maxdate,-90, day),
ALL('Calendar Table'[Date]))
var e = s/90
return e*DISTINCTCOUNT('Calendar Table'[Weekday number])

@Bryanna That's a different issue. First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8

 

Also: Matrix Measure Total Triple Threat Rock & Roll - Microsoft Fabric Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
Greg_Deckler
Super User
Super User

@Bryanna See if this helps: Better Rolling Average - Microsoft Fabric Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.

Top Solution Authors