TheCandyman
Technical User
I have the standard Multi Array that need to get sorted, now before you google read my post
sample array:
All of the arrays samples i can find sort the elements within each row and leave the rows themselves untouched. I need to find one that won't change the order of the row elements, but will only change the order of the rows.
Want it:
If this were asp.net it would be easier, but it's just classic asp. Anyone have an example they can share?
sample array:
Code:
1 8 Text ..... to 9 columns
3 12 Text
2 24 Text
4 5 Text
6 1 Text
5 21 Text
All of the arrays samples i can find sort the elements within each row and leave the rows themselves untouched. I need to find one that won't change the order of the row elements, but will only change the order of the rows.
Want it:
Code:
1 8 Text
2 24 Text
3 12 Text
4 5 Text
5 21 Text
6 1 Text
If this were asp.net it would be easier, but it's just classic asp. Anyone have an example they can share?