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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Selected only the last week of each month

Hi , I have a column : yearmonthweek, for example 20220414 (2022-04 and week 14).

I want to split this column into 3 and create a measure that returns the last week of each month. 

For example 20220417 => "last week of April" etc...

 

Thank you

1 ACCEPTED SOLUTION

@Anonymous ok, so you can do:

  • Group by in the Power Query, to extract the max week corresponding to each Year-Month:
    #"Raggruppate righe" = Table.Group(#"Modificato tipo", {"Year", "Month"}, {{"Week", each List.Max([Week]), type nullable number}})
    in
    #"Raggruppate righe"
  • You can do it directly in the viz by adding the maximum of week:
    BeaBF_0-1649758503723.png
  • Last, create a measure like this:
    Misura = CALCULATE(MAX(Tabella[Week]), ALLEXCEPT(Tabella, Tabella[Year], Tabella[Month]))
     
    Tell me if there is something unclear, I hope it can help you!
    BF.

View solution in original post

7 REPLIES 7
Anonymous
Not applicable

Hi @Anonymous , 

Please refer to my pbix file to see if it helps you.

Create a measure.

Measure =
VAR _maxweek =
    CALCULATE (
        MAX ( 'Table'[week] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Year] = SELECTEDVALUE ( 'Table'[Year] )
                && 'Table'[Month] = SELECTEDVALUE ( 'Table'[Month] )
        )
    )
RETURN
    IF ( MAX ( 'Table'[week] ) = _maxweek, 1, BLANK () )

vpollymsft_0-1649999818416.png

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

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

 

Anonymous
Not applicable

@Anonymous thank you for your answer 😉

BeaBF
Super User
Super User

@Anonymous Hi!

Can you paste some sample data and the expected result in explicit way?

 

Thx,

BF.

Anonymous
Not applicable

@BeaBF  I have 3 columns: Year, Month, Week 

I want to return the last week of each months. 

For example : Year = 2022 , Month = 04  and Week of april = 13,14,15,16,17

I want to return 04-17

 

@Anonymous You have data in this way? 

BeaBF_0-1649757403675.png

 

BF

Anonymous
Not applicable

Yes ! @BeaBF 

@Anonymous ok, so you can do:

  • Group by in the Power Query, to extract the max week corresponding to each Year-Month:
    #"Raggruppate righe" = Table.Group(#"Modificato tipo", {"Year", "Month"}, {{"Week", each List.Max([Week]), type nullable number}})
    in
    #"Raggruppate righe"
  • You can do it directly in the viz by adding the maximum of week:
    BeaBF_0-1649758503723.png
  • Last, create a measure like this:
    Misura = CALCULATE(MAX(Tabella[Week]), ALLEXCEPT(Tabella, Tabella[Year], Tabella[Month]))
     
    Tell me if there is something unclear, I hope it can help you!
    BF.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.