Forum Discussion
gigotomo
5 years agoFrequent Visitor
How to remove duplicates based on latest dates
I am trying to remove the duplicate "INC_NUM" and only the latest date (Submit) should remain alongwith its summary. How do i do it.
- 5 years ago
gigotomo
Here is one way to do this- Open Power Query Editor
- Duplicate this table in PowerQuery
- delete summary column from new table
- Right click on INC_Num and select Group by
- In Group By pop up box give New Column Name the value "Submit", set operation to "MAX", and select Submit under Column. Click OK
- Duplicate INC_Num & Submit columns
- Duplicate INC_num column & Submit column in current Table
- select both "Inc_num - Copy" & "Submit - Copy", right click, and select Merge Columns.
- Click OK in Merge Column popup box
- Return to the original table and repeat steps 6 - 8
- Now you have a shared Key you can Merge Queries together. From the Original Table click on "Merge Queries" in the top Home Ribbon
- The top query will be your Original Table and you need to select the new aggregated table as the second table. Then click on the merged column in each table as your join column. Under Join Kind select "Inner (Only matching rows)
- That's it. This will have only grabbed the INC_Num with the last date.
- 5 years ago
gigotomo ,
Please refer the below thread to achieve your need.
https://community.powerbi.com/t5/Desktop/Drop-duplicate-rows-retaining-latest-date/m-p/878537
Tahreem24
5 years agoSuper User
gigotomo ,
Please refer the below thread to achieve your need.
https://community.powerbi.com/t5/Desktop/Drop-duplicate-rows-retaining-latest-date/m-p/878537
gigotomo
5 years agoFrequent Visitor
Super !!!