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
lokosrio
Helper II
Helper II

RANKX function for fiscal year-week with sorting by date

Hi,

 

I want to create an RANKX function with grouping by FYYear-Week, but also sort by date, right now I have a function:

 RANKX ( dim_calendar, dim_calendar[FYYearWeek],, ASC, DENSE )
but as you can see on the picture below it is not sorted properly, because FYYearWeek = 2022/52 is bigger than FYYearWeek = 2022/01:

lokosrio_0-1660223789749.png

 

Logically it makes sense, but I want to add sorting by date to my formula, so instead of index = 107 should be 55 and so on

 

Best regards

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@lokosrio , for that case we create an FY year week column on the year of week start date.

 

FY Week = QUOTIENT(DATEDIFF(Minx(FILTER('Date',[FY Year]=EARLIER([FY Year])),'Date'[Start of Week]),[Date],DAY),7)+1

 

Then create = [FY year]*100 + [FY Week]

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@lokosrio , for that case we create an FY year week column on the year of week start date.

 

FY Week = QUOTIENT(DATEDIFF(Minx(FILTER('Date',[FY Year]=EARLIER([FY Year])),'Date'[Start of Week]),[Date],DAY),7)+1

 

Then create = [FY year]*100 + [FY Week]

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.