I'm trying to output a file containing only the rows that have 3 duplicate values with 3 columns.
Csv Current Example:
I only want to find duplicates on columns (2, 3, and 5), then output these rows to a results csv file
Column1,Column2,Column3,Column4,Column5,Column6
1a,32,46,1,1111,poiu
2b,12,43,123,3333,zxcv
3c,12,36,344,5555,asdf
4d,12,36,64,5555,qwer
5e,12,36,22,8888,lkjh
6f,10,36,5432,7777,mnbv
The results csv file should have:
3c,12,36,344,5555,asdf
4d,12,36,64,5555,qwer
Can anyone tell me how I can do this?