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
msommerf
Helper III
Helper III

Week Number from Specific (Static) date

Hi, I am looking to create a column in my date table which shows week numbers that start from 6th April every year as per example below:

Can anyone advise?

Tax Weeks.jpg

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@msommerf ,

Start Year = if(format([Date], "MMDD")*1 < 406 , date(year([Date])-1,4,6) ,date(year([Date]),4,6) )

 

FY Week num = QUOTIENT(datediff([Start Year], [Date], day),7)+1

 

 

Week That Resets Yearly
https://community.powerbi.com/t5/Community-Blog/Week-That-Resets-Yearly-Decoding-Date-and-Calendar-3...

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @msommerf 

 

Amit's formula should work. Have you tried that? You can create two new columns with them and get the result you want. 

vjingzhang_0-1651224989591.png

 

Best Regards,
Community Support Team _ Jing

amitchandak
Super User
Super User

@msommerf ,

Start Year = if(format([Date], "MMDD")*1 < 406 , date(year([Date])-1,4,6) ,date(year([Date]),4,6) )

 

FY Week num = QUOTIENT(datediff([Start Year], [Date], day),7)+1

 

 

Week That Resets Yearly
https://community.powerbi.com/t5/Community-Blog/Week-That-Resets-Yearly-Decoding-Date-and-Calendar-3...

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.

Top Solution Authors