The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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