Hi,,
for example, i've got 2 identic array
array1 = array2 = ("1","2","3","4","5")
How to put in a column array1 in order and mix array2 like this:
Column1 --- Column2
1 5
2 3
3 1
4 2
5 4
Note that #1 can't be align with the other #1, the same for all other number.
nomad