I have an array
x[1] x[2] x[3] ... etc.
I combine x by return and put into a field. But the elements of the array are not ordered 1, 2,3 etc.
I don't want to sort the list in the field by the values but by the numerical order of the keys.
I do that now by brute force:
repeat with i = 1 to m
put x[i] into line i of tResults
end repeat
put tResults into field 2But is there any quick way to get the list sorted by the keys? I have 11,000 elements in the array.
Jim
_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
