Remove Entity object from 2 lists not working

2
I've got two lists with objects from same Entity type. In a microflow I got Two nested iteration loops. The outer loop is on a total list with all objects. The inter loop has a (changing) subset of same objects. For every object in the inner loop, I want it to be removed from the outer loop list. This is done via "Change List" Action with settings: Variable Name 'OuterloopList'; Type = Remove; Value = $Innerloop_Object But the result I see, is that the Object is still in available in the outer loop list. What am I doing wrong?
asked
1 answers
1

Why not use the list operation substract? then you substract the inner list from the outer list? Or do you want to perform a set of tasks on the subset? If so first loop over the inner list and when you are done substract the inner from the outer list.

answered