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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Expression for year and week

Hi, I have an issue with my Year Week expression whenever there is a new year. When looking at weekly aggregated data I would like entire week 52 to be counted into year 2021, although the ending of week 52 is in the next year. 

This is my current code:

Calendar = ADDCOLUMNS (
CALENDAR (DATE(2016,1,1),TODAY()),
"Week", CONCATENATE(CONCATENATE(FORMAT([Date], "yyyy"), " W"),Format(WEEKNUM([Date], 21), "00"))
)

And this is my regions calendar layout (In DAX format: 21)

calendar.png

 
DateCurrent outcome (Year Week)Desired outcome (Year Week)
30 dec 20212021 W522021 W52
31 dec 20212021 W522021 W52
1 jan 20222022 W522021 W52
2 jan 20222022 W522021 W52
3 jan 20222022 W012022 W01
 
 

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , Take the year from week's start date

 

Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1

 

Year Week =  year([Week Start Date]) * 100 + [Your Week Number column]

View solution in original post

Vijay_A_Verma
Super User
Super User

Use below formula for your calendar

Calendar = ADDCOLUMNS (
CALENDAR (DATE(2016,1,1),TODAY()),
"Week", CONCATENATE(CONCATENATE(FORMAT([Date]+1-WEEKDAY([Date]-1), "yyyy"), " W"),Format(WEEKNUM([Date], 21), "00"))
)

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

Use below formula for your calendar

Calendar = ADDCOLUMNS (
CALENDAR (DATE(2016,1,1),TODAY()),
"Week", CONCATENATE(CONCATENATE(FORMAT([Date]+1-WEEKDAY([Date]-1), "yyyy"), " W"),Format(WEEKNUM([Date], 21), "00"))
)
amitchandak
Super User
Super User

@Anonymous , Take the year from week's start date

 

Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1

 

Year Week =  year([Week Start Date]) * 100 + [Your Week Number column]

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.