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 someo...
davehus
Memorable Member
7 years agoHi,
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