How do you merge two lists together while keeping duplicates?

I have two custom states (list A and list B).
List A = {1, 3, 4}
List B = {0, 3, 4}

How can i merge/combine these two lists so the third output list comes out as {0, 1, 3, 3, 4, 4}?

The merge function removes duplicates between the two lists. I want to keep duplicates.

I don’t think I’ve seen a simple function that adds lists with duplicates. The most straightforward way I can think of is to initially add each element to it’s respective list AND a merged list custom state in the same workflow. This way you don’t need to merge, the list will always be there. But be careful to also add the options to edit/remove the item in the merged list as well.

There is a little hack i found which might help.
Use arbitrary text. Inside the arbitrary text put ‘List A , List B’. And then outside the arbitrary text use the :split by ‘,’ operator and the :each item converted to number.

This bypasses the need for :merged by operator which would remove duplicates.

4 Likes

This topic was automatically closed after 70 days. New replies are no longer allowed.