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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
flemingg62
Helper I
Helper I

Return weeks as 1,2,3 from weeks in middle of a year

Hi

I have produced a data set by week and it returns (in tis example, but varies) 47,48 & 79 

 

flemingg62_0-1668449864563.png

looking to create a measure to return the first week from a date

I created a column to return the Week Number

Week = WEEKNUM([TimeStart]) and it returns 47,48, 49 etc

Now I want it to show 1,2,3 etc so I looking at something like

Week = WEEKNUM([TimeStart]) -Measure to calculate first week +1

 

Or any better way.

 

 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @flemingg62 ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_0-1668477221014.png

If you want  a calculated column:

Column = RANKX('Table',WEEKNUM([TimeStart]),,ASC,Dense)

Output:

vjianbolimsft_1-1668477266389.png

If you need a measure:

Measure = RANKX(ALL('Table'),WEEKNUM([TimeStart]),WEEKNUM(MAX('Table'[TimeStart])),ASC,Dense)

Output:

vjianbolimsft_2-1668477693794.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-jianboli-msft
Community Support
Community Support

Hi @flemingg62 ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_0-1668477221014.png

If you want  a calculated column:

Column = RANKX('Table',WEEKNUM([TimeStart]),,ASC,Dense)

Output:

vjianbolimsft_1-1668477266389.png

If you need a measure:

Measure = RANKX(ALL('Table'),WEEKNUM([TimeStart]),WEEKNUM(MAX('Table'[TimeStart])),ASC,Dense)

Output:

vjianbolimsft_2-1668477693794.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Not quite, but  it help me solve it , Thanks

Week = WEEKNUM([TimeStart])-WEEKNUM(MIN(BI_Slots[TimeStart]))+1
amitchandak
Super User
Super User

@flemingg62 , refer if these columns can help

 

Start Month = eomonth([Date],-1)+0
Start of Week = [Date] -WEEKDAY([Date],2)+1 //monday
Month Start week = [Start Month] -WEEKDAY([Start Month ],2)+1 //monday
Month Week = QUOTIENT(DATEDIFF([Month Start week],[Date],DAY),7)+1

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.