Hi,
I have two collections with the following items:
colBase: [1, 2, 3]
colRec: [3, 4, 5]
With this info I want to split colRec in two collections. One including the items that are in colBase and another one with items that are not in colBase. So in the example above, I should get
colRec1: [3]
colRec2: [4, 5]
I'm trying to find the right formulas to do this but not sure it is possible. Any help to point me in the right direction is appreciated.
Many thanks