Home > Enterprise >  How to check if a value is duplicate and if duplicate need to delete both line in Datatable
How to check if a value is duplicate and if duplicate need to delete both line in Datatable

Time:09-23

I have a Datatable with few Line of Data, my aim is to check whether there is any Duplicate value and if there a duplicate line, i that Duplicate Value & i need to remove both lines that created duplicate.

Input

InPut

my expected Output would be

OutPut

Any Suggestion will be helpful

Thanks in Advance

Thanks & Regards Harsha

CodePudding user response:

You need some way of getting a unique value for each row which depends only on the data in the row, this is usually known as a enter image description here

  • Related