Hello
I have a specific requirement where i need to create a target node based on two fileds of the source node. For every unique combination of these two fileds i need to create a node in the target.
for example
Line1
F1
F2
Line2
F1
F3
Line3
F4
F5
Line4
F1
F2
In the target i need a node T 3 times , as there are only 3 unique combinations of fileds (F1,F2) (F1,F3) (F4,F5). My target should be T[1] , T[2], T[3] 3 times only.
How can i achieve this .any help is greatly appriciated.
Thank you.