Hi, I have two different types of list. I want to filter the data from one list to another with unique values. But I do not want to use iteration loop because of performance issue. How should I filter list with unique values? Thanks and Regards, Samarth Jadhav
asked
Samarth Jadhav
1 answers
0
Do you mean you want to filter a list to remove duplicates?
If you do, then have you tried using a Union list operation. Pass the list in twice to remove the duplicates.