Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |