Reputation: 544
I would need the fourth, calculated column, to the below ex. table. Category is 'case' and entry is in the latest 'date' record per category, based on the 'result' from the latest 'date'
Thanks!
Upvotes: 1
Views: 260
Reputation: 30304
final result =
VAR tbl = CALCULATETABLE('Table', ALLEXCEPT('Table', 'Table'[case]))
VAR maxDate = MAXX(tbl, 'Table'[date])
RETURN
IF('Table'[date] = maxDate,
CONCATENATEX(
FILTER(tbl, 'Table'[date] = maxDate), 'Table'[result]
), ""
)
Upvotes: 1