This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
I have a requirement where i have a start and end date but here the month has to be 28 days and each month consists of 4 weeks.
Currently i have done this
but the problem here is, i am not able to reset the month or the week column i.e my weeknum should be 1,2,3,4,1,2,3,4 instead of 1,2,3,4,5,6,7,8..
Same goes with the month(Row number column) after the year end it should reset and start from 1.
Solved! Go to Solution.
@Anonymous I created this calendar for you in the attached PBIX file below signature. Here are some of the columns:
Sequential = COUNTROWS(FILTER('284Calendar',[Date]<=EARLIER([Date])))
FY = 2020 + TRUNC([Sequential]/364)
Month = TRUNC(COUNTROWS(FILTER('284Calendar',[Date]<EARLIER([Date]) && [FY] = EARLIER([FY])))/28) + 1
Week = TRUNC(COUNTROWS(FILTER('284Calendar',[Date]<EARLIER([Date]) && [FY] = EARLIER([FY]) && [Month] = EARLIER([Month])))/7) + 1
@Anonymous I created this calendar for you in the attached PBIX file below signature. Here are some of the columns:
Sequential = COUNTROWS(FILTER('284Calendar',[Date]<=EARLIER([Date])))
FY = 2020 + TRUNC([Sequential]/364)
Month = TRUNC(COUNTROWS(FILTER('284Calendar',[Date]<EARLIER([Date]) && [FY] = EARLIER([FY])))/28) + 1
Week = TRUNC(COUNTROWS(FILTER('284Calendar',[Date]<EARLIER([Date]) && [FY] = EARLIER([FY]) && [Month] = EARLIER([Month])))/7) + 1
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 23 | |
| 20 | |
| 19 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 56 | |
| 56 | |
| 42 | |
| 26 | |
| 24 |