Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I want to create a new column which gives me the last day of every week. I already have year_number, month_number, and week_number.
Thank you.
Solved! Go to Solution.
Try the following code:
It calculates the max date for each weeknumber and year combination.
Last day of week =
CALCULATE (
MAX ( 'Calendar'[Date] );
FILTER (
'Calendar';
'Calendar'[Week number] = EARLIER ( 'Calendar'[Week number] )
&& 'Calendar'[Year] = EARLIER ( 'Calendar'[Year] )
)
)
If you have the ability to use the power query editor to do this use the Date.EndOfWeek() function in a custom column.
Date.EndOfWeek([Date])
Kind regards
Joren Venema
Data & Analytics Consulant
If this reply solved your question be sure to mark this post as the solution to help others find the answer more easily.
Try the following code:
It calculates the max date for each weeknumber and year combination.
Last day of week =
CALCULATE (
MAX ( 'Calendar'[Date] );
FILTER (
'Calendar';
'Calendar'[Week number] = EARLIER ( 'Calendar'[Week number] )
&& 'Calendar'[Year] = EARLIER ( 'Calendar'[Year] )
)
)
If you have the ability to use the power query editor to do this use the Date.EndOfWeek() function in a custom column.
Date.EndOfWeek([Date])
Kind regards
Joren Venema
Data & Analytics Consulant
If this reply solved your question be sure to mark this post as the solution to help others find the answer more easily.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 82 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |