Hi folks,
I did find that using Join with Merge to append data to an other set only append the merged elements onto the 1st row of the second.
Is there a way to merge on all rows to augment all rows with the merged new value?
eg:
Merging aaa to
bbb
ccc
will show:
bbb aaa
ccc
Desired result is:
bbb aaa
ccc aaa
Thanks,