Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Need Help on creating weeks with months

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

3 REPLIES 3
Ahmedx
Super User
Super User

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

 

Anonymous
Not applicable

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 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors