The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 !! 🙂
User | Count |
---|---|
29 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |