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
emmaclarke83
Helper I
Helper I

moving average over 26 weeks

I have a dataset which details the hours worked for every employee each week of the year.  I want to calculate a moving average over the past 26 weeks.  Is this possible?  Note, my date table does not have individual dates as the main dataset is in weeks.

5 REPLIES 5
emmaclarke83
Helper I
Helper I

Hi

Can anyone else help with this?

Thanks

 

EMma

jthomson
Solution Sage
Solution Sage

How is the week value stored, is it just an integer, and does it reset yearly? Assuming yes and yes, I'd try looking up solutions on how people have created a yearmonth column in a date table - if you can do similar and end up with something like 201652 for the last week of last year and 201701 for the first week of this year, then you've got a single integer where the highest values are the most recent. It should be straightforward to use something like TOPN(26) as a filter for an average on your hours column

excel sample

 

Hi, yes an integer.


I can make a year/week column no problem. However, the top26 will not work as this ia a moving average. I have attached a link above to an example Excel to show you what I mean.

 

@emmaclarke83,

 

You could use the measure below to get moving average over 26 weeks.

26WeekMovingSumHour =
VAR minweeknumber =
    MAX ( Table1[Weeknumber] ) - 26
VAR maxweeknumber =
    MAX ( Table1[Weeknumber] )
RETURN
    CALCULATE (
        Table1[TotalWeekHour],
        FILTER (
            ALL ( Table1 ),
            Table1[Weeknumber] > minweeknumber
                && Table1[Weeknumber] <= maxweeknumber
        )
    )
numberofweeks =
VAR minweeknumber =
    MAX ( Table1[Weeknumber] ) - 26
VAR maxweeknumber =
    MAX ( Table1[Weeknumber] )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( Table1[Weeknumber] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Weeknumber] > minweeknumber
                && Table1[Weeknumber] <= maxweeknumber
        )
    )
26WeekMovingAverageHour =
VAR minweeknumber =
    MAX ( Table1[Weeknumber] ) - 26
VAR maxweeknumber =
    MAX ( Table1[Weeknumber] )
VAR numberofWeek =
    CALCULATE (
        DISTINCTCOUNT ( Table1[Weeknumber] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Weeknumber] > minweeknumber
                && Table1[Weeknumber] <= maxweeknumber
        )
    )
VAR WeekMovingSumHour =
    CALCULATE (
        Table1[TotalWeekHour],
        FILTER (
            ALL ( Table1 ),
            Table1[Weeknumber] > minweeknumber
                && Table1[Weeknumber] <= maxweeknumber
        )
    )
RETURN
    WeekMovingSumHour / numberofWeek

Capture.PNG

 

Regards,

Charlie Liao

Hi Charlie Thanks for your reply. I think this is close to what I need but I need it for each employee and when I add the employee number field the calculations don't look correct. Is there anything else I can do? Thanks Emma

 

 

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.