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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Analitika
Post Prodigy
Post Prodigy

Sorting year weeks in Power BI

Hello,

 

I would like to ask how to properly sort year week because in visual it seems unsorted:

Here is the view of it

 

Analitika_0-1653394254537.png

Is possible to fix it?

4 REPLIES 4
Adescrit
Impactful Individual
Impactful Individual

Hi @Analitika ,

 

Due to the "-" in the middle of the Year-Week number, that value is stored as text. This is the reason the sorting is not working for you.

 

In order to sort it correctly, you can replace the Year-Week formula you are currently using with the following:

 

Year-Week = 
    VAR __Year = Year( [Date] )
    VAR __WeekNum = WEEKNUM( [Date] )

RETURN
    IF( __WeekNum < 10, CONCATENATE( __Year, "-0" & __WeekNum ), CONCATENATE( __Year, "-" & __WeekNum ))

 

The difference is the "0" before any single-digit week numbers. This allows the sorting to work correctly.


Did I answer your question? Mark my post as a solution!
My LinkedIn
ddpl
Solution Sage
Solution Sage

Hi

Changed data type as Date and format as below

ddpl_0-1653394542121.png

 

I am getting this 

Analitika_0-1653395750536.png

 

Hi @Analitika ,

Please create a new column on your date table like below :

YearWeekIndex = dim_date[Year] * 100 +dim_date[Week of Year]
Then select your YearWeek column, go to sort by column and click on 'YearWeekIndex'. Your yearweek field will now be sorted using this column.

rohit_singh_0-1653396368691.png

Kind regards,

Rohit


Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 😊

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.