Forum Discussion
lscoffield
7 years agoFrequent Visitor
Create a new table with latest row
I have a table that records activities session_id and a timestamp. (see diagram) I would like to create a table with only the latest entry for each session_id. The rows marked in yellow. Can someone please help.
3 Replies
- davehus
Memorable Member
Hi,
In Powerbi Select Modelling > New Table and try the code below.
Last Date = SUMMARIZE('Your Table', 'Your Table'[Session ID], "Last Date", MAX('Your Table'[TimeStamp]))HTH
D
- v-jiascu-msft
Microsoft Employee
Hi lscoffield,
You also can add create a measure and add it in the Visual Level filter and filter out the blanks.
Measure = VAR maxTimeStamp = CALCULATE ( MAX ( 'table'[timestamp] ), ALLEXCEPT ( 'table', 'table'[session_id] ) ) RETURN IF ( MIN ( 'table'[timestamp] ) = maxTimeStamp, 1, BLANK () )Best Regards,
Dale
- v-jiascu-msft
Microsoft Employee