March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I have a calculated table in my model which contains the dates from another table. Within that table is a week number which looks at the MAX date in the table and then counts back 7 days. The 7 biggest days in the table are therefore week -1, the next 7 are week -2 etc.
I am trying to add a new column which will show the max date relative to the week number. In the screenshot below every row from week -8 would show 17 Jan 2021, for week -7 it would show 24 Jan 2021 etc.
In excel i would run MAXIFS(DATE,WeekNumber,<the cell along side>) or similar.
You can see the attempt i've made but with little success.
Any guidance would be swell
Solved! Go to Solution.
Hi
Are you trying to show the EOW date?
Column = MOD([Date]-1, 7) + 6
You might need to change the -1 to a different number depending on your week date.
Also, check out date functions in Power Query. There are a tonne to sort out this sort of prob!
https://docs.microsoft.com/en-us/powerquery-m/date-functions
Hi @User7664
Try it
Column =
VAR CurWeek = ABS('Table'[Week Number])
RETURN
MAXX(FILTER('Table',ABS('Table'[Week Number])= CurWeek),'Table'[Date])
Hi @User7664
Try it
Column =
VAR CurWeek = ABS('Table'[Week Number])
RETURN
MAXX(FILTER('Table',ABS('Table'[Week Number])= CurWeek),'Table'[Date])
Amazing. Thank you.
No, im not trying to find the end of the week. The end of the week will always be the last day in the query that this table is generated from. The End of the week can often be a tuesday or a thursday. The -1 indicates all the days part of that week, and the -2 are all the days part of the 2nd week back. I just need to know what the last day in -1 is and the last day in -2 is etc.
Hi
Are you trying to show the EOW date?
Column = MOD([Date]-1, 7) + 6
You might need to change the -1 to a different number depending on your week date.
Also, check out date functions in Power Query. There are a tonne to sort out this sort of prob!
https://docs.microsoft.com/en-us/powerquery-m/date-functions
Could this be cause i use roundup on my week number calculation?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |