Hi,
I have to basic arrays, both may be the exact same sometimes and slighly different other times. I need to compare them and create a new array with only unique elements.
for example:
array1 = one, two, three
array2 = one, two, four, five
I wish to have:
array3 = one, two, three, four, five.
is there a function to do this ?
Cheers Big Ears