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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors