March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
119 | |
88 | |
73 | |
67 | |
49 |
User | Count |
---|---|
199 | |
141 | |
97 | |
79 | |
68 |