Forum Discussion
pat_energetics
Advocate II
8 years agoCreate new table with last complete record for each Unit
Hi, I'm trying to create a new table containing only the latest record for each unique "DUID" in the column DUID of the table shown using the maximum value from the "LastChanged" column. The tab...
Anonymous
8 years agoNot applicable
Hi
Try this one and let me know if you see any issues.
New Table = FILTER( Table1, Table1[DUID]= MAX(Table1[DUID]) && Table1[lastChanged]=MAX(Table1[lastChanged]))
Thanks
Raj