I have two datatables with one column each and merge them/create a new table, so that I have a table in the end that has also one column and contains only the values that were not in both of the original tables.
As an Example:
If
Table1: 1, 2, 3, 5
Table2: 1, 2, 3, 4
Then
Table3: 4, 5
I hope my goal is clear. I´m sure there is an easy way to solve this, but i tried it with merge and remove duplicates activities as well as the join table activity. Unfortunately I wasn´t able to achieve the result I needed.