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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Analitika
Post Prodigy
Post Prodigy

Year week in Power BI

Hello,

 

I would like to get concatenated year week in table visual in Power BI. Having column Week number. I got this result:

Analitika_0-1653378844666.png

Seems year week is unsorted. I used this formula to for column Year week. 

Year_week = FORMAT('Date'[Date],"YYYY") & "-" &'Date'[Week Number]
Week Number = WEEKNUM('Date'[Date],1).
 
How to resolve this issue by making ascending order year_week?
 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Analitika,

You can add a calculated column to extract the year and week number value from the date to concatenate and convert to numeric, then these values can be sorted by ASC/DESC order on your visuals.

YearWeek =
YEAR ( 'Table'[Date] ) * 100
    + WEEKNUM ( 'Table'[Date], 2 )

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Analitika
Post Prodigy
Post Prodigy

Hello,

 

I would like to ask how I can sort ascending column which is constructed from year and week. I am getting year week column but sorting is not as in normal case. For example,

Analitika_0-1653386509177.png

Year_week = FORMAT('Date'[Date],"YYYY") & "-" &'Date'[Week Number]
Week Number = WEEKNUM('Date'[Date],1)
Formulaes.
Anonymous
Not applicable

Hi @Analitika,

You can add a calculated column to extract the year and week number value from the date to concatenate and convert to numeric, then these values can be sorted by ASC/DESC order on your visuals.

YearWeek =
YEAR ( 'Table'[Date] ) * 100
    + WEEKNUM ( 'Table'[Date], 2 )

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.

Top Kudoed Authors