Hi All,
I have datatable which has close to 53 columns , in that I need to remove duplicates from one particular column based on two other columns logic. I am attaching below the input file few columns which are to be considered
Sequence No | Layer Number | Company Name |
---|---|---|
3 | 2 | Syndicate |
3 | 3 | Hannover |
3 | 3 | Syndicate |
3 | 4 | Hannover |
3 | 4 | Swiss |
4 | 2 | Syndicate |
4 | 3 | Hannover |
4 | 3 | Syndicate |
4 | 4 | Hannover |
4 | 4 | Swiss |
in this data I have to remove the duplicates if any at each layer. for eg at layer two we have two occurance of Syndicate so we should pick only one and that too with the highest sequence number. Requesting for suggestions as I m badly stuck with this |