What happens when adding to list?

0
What happens when adding to a list in a microflow? If i add the same object to a list in a microflow. Will it add it twice or only once? TIA
asked
3 answers
3

If you need a unique list based on one you have,  you just input that one like so:

If you have to different lists or a list and a object you could union those and get only unique objects.

 

 

answered
1

Hi Ben,

It's possible for your list to contain duplicate objects. To get a list of unique objects afterwards use the list operation ‘union’. 

answered
1

If your list iassociated with another table 1->* then it will only include unigue items, if you add it twice it will be there once.

answered