Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
87 | |
84 | |
68 | |
49 |
User | Count |
---|---|
131 | |
111 | |
96 | |
71 | |
67 |