Forum Discussion
Anonymous
6 years agoNot applicable
Find last changed value and date
Hello, I have a table with historical data with ID, Status and Date. I would like to add 2 additional columns and can show what is the last "changed value" and last changed date for the same ID. ...
- 6 years ago
Hello Anonymous
Two calculated columns will get what you are looking for I think.
First we figure out the [Last Changed Date]
Last Changed Date = VAR _Status = 'Table'[Status] VAR _Date = 'Table'[Date] RETURN CALCULATE( MAX ( 'Table'[Date] ), ALLEXCEPT ( 'Table', 'Table'[ID] ), 'Table'[Date] < _Date, 'Table'[Status] <> _Status )Then we can use that to get the [Last Changed Status]
Last Changed Status = VAR _LastChangeDate = 'Table'[Last Changed Date] RETURN CALCULATE( MAX ( 'Table'[Status] ), ALLEXCEPT ( 'Table', 'Table'[ID] ), 'Table'[Date] = _LastChangeDate )
amitchandak
Super User
6 years agoTry, if this can help
https://community.powerbi.com/t5/Desktop/highest-value-by-category/td-p/428758