Remove duplicated entries from a list

0
in this microflow I create a list TestAccNameCategoryList_2, it has duplicated entries I saw in the forum similar questions but since I'm still new to mendix, I couldn't apply it to my case. Could you please help me ? here is the microflow : Normally, I should iterate through the list and create a new list in which I have to put the unique records, how can I do that, could you give me a step by step solution?   Thanks.
asked
2 answers
0

you can use intersect of the same list to itself as well. 

both union and intersect works 

answered
1

Use a list operation Union with itself. The result is that all duplicates are removed. See documentation here: https://docs.mendix.com/refguide/list-operation/

 

Regards,

Ronald

answered