I want to deduplicate my rows grouped by one column, keep all the other columns, but choose which row is kept based on another column. How do I do this?
For example, I want to aggregate the rows based on ID and keep the row with min(Criteria_Column).
Before:
| ID | Criteria_Column | Other_Column_1 | Other_Column_2 |
| 123 | 9 | a | s |
| 123 | 10 | d | f |
| 456 | 14 | j | k |
After:
| ID | Criteria_Column | Other_Column_1 | Other_Column_2 |
| 123 | 9 | a | s |
| 456 | 14 | j | k |
It seems similar to the Unique tool except that I can't find any setting on the Unique tool where I can choose a criteria by which to decide which row to keep.