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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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