Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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?
Solved! Go to Solution.
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...
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.
Best Regards,
Community Support Team _ Jing
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...
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |