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 working on a data set where the date range is defined by the week number of the specific year.
For example:
1) If its 202205,that shows week number 5 of the year 2022
2)If its 202332, that shows week 32 of the year 2023
Can you help me with craeting week range in the date column?
Thanks
pls try this
startweek date =
var _year = VALUE(LEFT([Year-week],4))
var _week = VALUE(RIGHT([Year-week],2))
VAR _date = DATE(_year,1,-2)-WEEKDAY(DATE(_year,1,3))+_week*7
RETURN
_date-7
-----------------
Endweek date =
var _year = VALUE(LEFT([Year-week],4))
var _week = VALUE(RIGHT([Year-week],2))
VAR _date = DATE(_year,1,-2)-WEEKDAY(DATE(_year,1,3))+_week*7
RETURN
_date
Can you please explain with a example. Do you need each month week number ? if you provide any example that would be better to understand