Forum Discussion
HxH
6 years agoAdvocate II
Eliminate duplicate rows based on Timestamp
Hi all, I have a table that among other columns has an ID and a Timestamp which records the moment when that row was created. For some reasons I'm not going to dive into some IDs are duplicated w...
- 6 years ago
You can achieve that by doing the following steps:
- use a "group by" on "id" and select as operation "All Rows", let's assume you call the column "group"
- Add a custom column with formula: Table.Min([group],"date")
- Expand the custom column
- Expand group
- create a conditional column (show/hide) where you compare the date from the row with the expanded custom column (which is the minimum date per id)
- filter on show
stvsurf
6 years agoResolver I
You can achieve that by doing the following steps:
- use a "group by" on "id" and select as operation "All Rows", let's assume you call the column "group"
- Add a custom column with formula: Table.Min([group],"date")
- Expand the custom column
- Expand group
- create a conditional column (show/hide) where you compare the date from the row with the expanded custom column (which is the minimum date per id)
- filter on show