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 there,
I hope that you are able to help me with my problem.
In the example table below, I am trying to calculate Column D where I’d like to display the latest “Process Date” (Column C) for each “Project ID” (Column A).
In other words, all Project ID rows should display 19th of November 2018 in Column 4.
I tried LOOKUPVALUE and CALCULATE functions but haven’t been able to get this to work.
Any advice is most welcome!
Project ID | Final Total | Process Date | Required Result |
1 | 1000 | 15/05/2018 | 19/11/2018 |
1 | 1500 | 27/09/2018 | 19/11/2018 |
1 | 2000 | 19/11/2018 | 19/11/2018 |
2 | 500 | 13/07/2018 | 21/09/2018 |
2 | 750 | 21/09/2018 | 21/09/2018 |
3 | 250 | 23/02/2018 | 25/12/2018 |
3 | 500 | 17/06/2018 | 25/12/2018 |
3 | 900 | 25/12/2018 | 25/12/2018 |
Solved! Go to Solution.
No worries. You can just add the filter on Category back in after the ALLEXCEPT
Final Date = CALCULATE ( MAX ( Project[Process Date] ), ALLEXCEPT ( Project, Project[Project ID] ), //Removes all contexts/filters except for Project ID Project[Category] = "Rock" //Adds back in a filter on category )
This type of thing is perfect for Power Query. Here's the final table I got:
You can see what I did in Power Query and the applied steps.
Here is the file:
Hi, the link to the workbook is invalid. Can you please share again?
Hi, the link to the workbook is invalid. Can you please share again?
Try this:
Final Date = CALCULATE( MAX(Project[Process Date]), ALLEXCEPT(Project, Project[Project ID]) )
Hope this helps
David
Project ID | Category | Final Total | Process Date | Required Result |
1 | Rock | 1000 | 15/05/2018 | 19/11/2018 |
1 | Paper | 1500 | 27/09/2018 | 19/11/2018 |
1 | Rock | 2000 | 19/11/2018 | 19/11/2018 |
2 | Rock | 500 | 13/07/2018 | 13/07/2018 |
2 | Paper | 750 | 21/09/2018 | 13/07/2018 |
3 | Rock | 250 | 23/02/2018 | 17/06/2018 |
3 | Rock | 500 | 17/06/2018 | 17/06/2018 |
3 | Scissors | 900 | 25/12/2018 | 17/06/2018 |
No worries. You can just add the filter on Category back in after the ALLEXCEPT
Final Date = CALCULATE ( MAX ( Project[Process Date] ), ALLEXCEPT ( Project, Project[Project ID] ), //Removes all contexts/filters except for Project ID Project[Category] = "Rock" //Adds back in a filter on category )
Hi David,
Thank you very much for the solution! It works exactly as required.
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 |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |