Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
I have a Year and a Week number field in a table, eg Year 2020, and Week 1-53. (Week 53 is an issue in this case, week 53 is the last days in december when January 1st is in a middle of week.
How can I calculate the laste date in week, using Year and Week number ?
Solved! Go to Solution.
The basic pattern is here: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/td-p/985814
Assuming you have a column in your date table using WEEKNUM:
Last week date column =
MAXX(FILTER('Date',YEAR('Date'[Date])=[Year] && 'Date'[Weeknum] = [WeekNo]),'Date'[Date])
Hi, thanks I'm close to solution now. Is far as i can see the "Last week date" is in the Data Table. Im also using the date table here but do you have any idea how i can calculate or add the last date in week column to this table, based on Year and Week colum? There is no dates in this table, only year and week.
The basic pattern is here: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/td-p/985814
Assuming you have a column in your date table using WEEKNUM:
Last week date column =
MAXX(FILTER('Date',YEAR('Date'[Date])=[Year] && 'Date'[Weeknum] = [WeekNo]),'Date'[Date])
Perfect ! Thank You !! 🙂
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
16 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |