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
Hello good morning.
I have the following related tables, both tables have a field for when they were last modified, the relationship of my main table with the secondary one is one to many.
And I need to create a new table or column within the main table where I can see which two dates are the most recent, taking into account the secondary table may have one or more dates related to a single value from the main table.
@Anonymous
Create a table as follows:
New Table =
ADDCOLUMNS(
SUMMARIZE( Orders , Orders[ID_SC] , Orders[Modified_On]) ,
"Latest Modified Date" ,
MAX( Orders[Modified_On] , MAXX( RELATEDTABLE( Anotation ) , Anotation[Modified_On] ) )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you very much, it helped me a lot.
How could I implement this formula to create a new column within my main table.
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 |
---|---|
39 | |
22 | |
21 | |
19 | |
10 |
User | Count |
---|---|
36 | |
35 | |
35 | |
20 | |
14 |