Forum Discussion
knightkblack
8 years agoFrequent 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 ...
Anonymous
8 years agoNot 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