Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
knightkblack
Frequent Visitor

Show Last 4 Weeks not include Current Week

I've got a formula calculating the last 4 weeks so I can have a rolling 4 week average. The only issue is that I don't necessarily want to include the current week. I would just want it to update at the end of each week if that makes sense.

 

This is the formula for my Last 4 Weeks column:

 

Last 4 Weeks = IF(AND(table[Date]>=table[Today]-28, table[Date]<=table[Today]),1,0)

 

I then use this as a page filter and only include the 1's.

 

As of right now, my graphs are showing Weeks 22 - 26 which is 5 weeks rather than just 4. We're currently in week 26 and I only want to see weeks 22, 23, 24 and 25 on my graph. Next week I would want to see weeks 23, 24, 25 and 26 on my graph.

 

Any help would be appreciated.

1 REPLY 1
Anonymous
Not applicable

Will this help you ?

Last 4 weeks = IF(AND( WEEKNUM(Table1[Date])>= WEEKNUM(TODAY())-5 , WEEKNUM(Table1[Date])<= WEEKNUM(TODAY())-1),1,0)

 

 Then you can use the page filter to filter based on value 1.

 

Thanks

Raj

Helpful resources

Announcements
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.