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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Imagauthamam
Helper III
Helper III

What is the logic for getting last 5 weeks data in a measure even when there is a fiscal year change

New Fiscal year starts in February 1st. So far,I didn't use year column and only we used week,I could do easily by taking max of week number and getting 5 weeks back from that. But right now we have another fiscal year coming so I think year column needs to be clubbed with week to get unique year week number

 

Right now, that column looks like the below 

202248

202249

202250

202251

202252

202301

202302

 

Now I can't use max and subtract 5 to get last 5 weeks. How do I do this?

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Imagauthamam , If you want this based on today

 

Last 5 Week Today =
var _min1 = today() -WEEKDAY(today() ,2) -6 //Monday week start
var _max = _min1 +6

var _min = _min - 4*7
return CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))

 

If you need based on selected value, ROlling 5 weeks data

 

You need columns

Have these new columns in Date Table, Week Rank is Important in Date/Week Table

Week Rank = RANKX('Date','Date'[Week Start date],,ASC,Dense)
OR
Week Rank = RANKX('Date','Date'[Year Week],,ASC,Dense) //YYYYWW format

 

 

Last 5 weeks = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]>=max('Date'[Week Rank])-5 && 'Date'[Week Rank]<=max('Date'[Week Rank])))

 

But if you need 5 week trend when select 1 week, you need one more date table (independent)

 

//Date1 is independent Date table and Date is Joined
new measure =
var _max = max('Date'[Week Rank])
var _min = max('Date'[Week Rank]) -5
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Week Rank] >=_min && 'Date'[Week Rank] <=_max))

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8

 

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Imagauthamam
Helper III
Helper III

Thanks @amitchandak  I will check this out

amitchandak
Super User
Super User

@Imagauthamam , If you want this based on today

 

Last 5 Week Today =
var _min1 = today() -WEEKDAY(today() ,2) -6 //Monday week start
var _max = _min1 +6

var _min = _min - 4*7
return CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))

 

If you need based on selected value, ROlling 5 weeks data

 

You need columns

Have these new columns in Date Table, Week Rank is Important in Date/Week Table

Week Rank = RANKX('Date','Date'[Week Start date],,ASC,Dense)
OR
Week Rank = RANKX('Date','Date'[Year Week],,ASC,Dense) //YYYYWW format

 

 

Last 5 weeks = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]>=max('Date'[Week Rank])-5 && 'Date'[Week Rank]<=max('Date'[Week Rank])))

 

But if you need 5 week trend when select 1 week, you need one more date table (independent)

 

//Date1 is independent Date table and Date is Joined
new measure =
var _max = max('Date'[Week Rank])
var _min = max('Date'[Week Rank]) -5
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Week Rank] >=_min && 'Date'[Week Rank] <=_max))

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8

 

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.