Add string to other empty spaces in an Entity

0
Hello all, I have a button that calls a microflow.  In this microflow I want to: Filter an Entity to have only the rows with the same ‘Serial Number’  Find the one first row which have a string in the ‘Name’ column Copy this string to all the other empty spaces in the ‘Name column’ with the same ‘Serial Number’ I have this microflow, but it’s not working. What’s wrong?
asked
1 answers
2

Hi André,

In the last step you only change one object, but in you derscription it says that you want to change all objects on the list.

In that case you would have to loop over the objects in the list and use a change activity in the loop. Then commit the list afterwards.

Also double check that you use your list operations on the correct lists, this can be confusing sometimes, when you have many lists of the same entity.

Hope this helps!

answered