I have a dataset which will have columns of Item and Status ( there are more columns but these are the two I need to use for my result)
Basically create a filter or use VBA to create a new dataset where I find duplicates of the combination of Item and Status, but keep the 1st instance of that combination but also keep every other row of data.
In the example below Item "5" and Status of "Ready" is in the data twice and also Item "7" and Status of "Assign" is there twice. I want to keep the 1st instance of both Item 5 and 7 and also Item 6.
The actual data set is 500K rows, so would like a filter so I can create a pivot table and use that to create the new dataset or VBA.
Desired Outcome
Basically create a filter or use VBA to create a new dataset where I find duplicates of the combination of Item and Status, but keep the 1st instance of that combination but also keep every other row of data.
In the example below Item "5" and Status of "Ready" is in the data twice and also Item "7" and Status of "Assign" is there twice. I want to keep the 1st instance of both Item 5 and 7 and also Item 6.
The actual data set is 500K rows, so would like a filter so I can create a pivot table and use that to create the new dataset or VBA.
Item | Status |
5 | Ready |
5 | Ready |
6 | ABC |
7 | Assign |
7 | Assign |
Desired Outcome
Item | Status |
5 | Ready |
6 | ABC |
7 | Assign |