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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I am trying to write DAX function to get 52 rolling weeks in a year assuming my week starts every Thursday and ends on Wednesday. Need some help on the logics
M/D/Y | WK | DAY |
1-01-2019 | Week 1 | Tuesday |
1-02-2019 | Week 1 | Wednesday |
1-03-2019 | Week 2 | Thursday |
1-04-2019 | Week 2 | Friday |
1-05-2019 | Week 2 | Saturday |
1-06-2019 | Week 2 | Sunday |
1-07-2019 | Week 2 | Monday |
1-08-2019 | Week 2 | Tuesday |
1-09-2019 | Week 2 | Wednesday |
1-10-2019 | Week 3 | Thursday |
1-11-2019 | Week 3 | Friday |
1-12-2019 | Week 3 | Saturday |
1-13-2019 | Week 3 | Sunday |
1-14-2019 | Week 3 | Monday |
1-15-2019 | Week 3 | Tuesday |
1-16-2019 | Week 3 | Wednesday |
Solved! Go to Solution.
You need to create a custom calendar
Date = ADDCOLUMNS(CALENDAR(DATE(2020,1,1),DATE(2023,12,31)),
"Week Day",WEEKDAY([Date],14), //start of the week is thursday
"Weeknum" ,WEEKNUM([Date],14),
"Year" , Year([Date])
)
and only then count the sliding weeks of the year,
rolling weeks =
VAR _CurrentWeek =
MAX('Date'[Weeknum])
RETURN
CALCULATE([total],'Date'[Weeknum]<=_CurrentWeek)
you can download the file here
https://dropmefiles.com/DJb1i
You need to create a custom calendar
Date = ADDCOLUMNS(CALENDAR(DATE(2020,1,1),DATE(2023,12,31)),
"Week Day",WEEKDAY([Date],14), //start of the week is thursday
"Weeknum" ,WEEKNUM([Date],14),
"Year" , Year([Date])
)
and only then count the sliding weeks of the year,
rolling weeks =
VAR _CurrentWeek =
MAX('Date'[Weeknum])
RETURN
CALCULATE([total],'Date'[Weeknum]<=_CurrentWeek)
you can download the file here
https://dropmefiles.com/DJb1i
Do you have more than one year in the table?
Probably there is a better way, but i would do:
where
Not why sure but this logic was not working for me. I was getting Week nums as attached snap
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.