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

4 Week Average delayed by one week

Hello! I am trying to create a four week rolling average delayed by one week as the current week will be incomplete and skew the results. 

 

I have created a week number within the Date Table. I have tried the following formula which 

 

TechHrs 4Wk Avg = CALCULATE(SUM([Tech Hrs]), DATESBETWEEN('DATE'[Week],
Earlier(related(Date[week]))-5, Earlier(related(Date[week]))-1))/4

which does not recognize the Date[Week] Column. 

 

I am looking for this as a result

image.png

 

With the original data of (truncated)

image.png

 

Thank you in advance. Your help is greatly appreciated! 

Lynne

1 ACCEPTED SOLUTION
v-danhe-msft
Employee
Employee

Hi @purpletiger ,

Based on my test, you could refer to below steps:

Sample data:
(Week is a calculated column:

Week = WEEKNUM('Table1'[Date],2)

1.PNG

Create below measure:

Measure 2 = var week = DISTINCTCOUNT(Table1[Week])
return
IF(week=1,BLANK(),CALCULATE(SUM(Table1[Hrs]),FILTER(ALL('Table1'),'Table1'[Tech]=MAX('Table1'[Tech])&&'Table1'[Week]<=4))/4)

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-danhe-msft
Employee
Employee

Hi @purpletiger ,

Based on my test, you could refer to below steps:

Sample data:
(Week is a calculated column:

Week = WEEKNUM('Table1'[Date],2)

1.PNG

Create below measure:

Measure 2 = var week = DISTINCTCOUNT(Table1[Week])
return
IF(week=1,BLANK(),CALCULATE(SUM(Table1[Hrs]),FILTER(ALL('Table1'),'Table1'[Tech]=MAX('Table1'[Tech])&&'Table1'[Week]<=4))/4)

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you Daniel - I am actually working on the average based upon the "Week Starting ***). What you have written is helpful and will update this once I get it working. 

 

Hi @purpletiger ,

OK, if your problem could be solved, don't forget to mark one reply as answered to close this topic.

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.