Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
Solved! Go to Solution.
@Anonymous ok, so you can do:
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 () )
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 thank you for your answer 😉
@Anonymous Hi!
Can you paste some sample data and the expected result in explicit way?
Thx,
BF.
@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?
BF
@Anonymous ok, so you can do:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
10 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |