R
Randall
Is there a VB function to sort an array? Something like:
AA(0) = 3
AA(1) = 6
AA(2) = 0
Call ArraySort(AA)
Result:
AA(0) = 0
AA(1) = 3
AA(2) = 6
I can write my array to cells and uses Range.Sort, or
write my own ArraySort routein; but is there any way more
efficient than this?
Tx,
Randall
AA(0) = 3
AA(1) = 6
AA(2) = 0
Call ArraySort(AA)
Result:
AA(0) = 0
AA(1) = 3
AA(2) = 6
I can write my array to cells and uses Range.Sort, or
write my own ArraySort routein; but is there any way more
efficient than this?
Tx,
Randall