I would like to sort the second column, in a 5x50 array... for example:
yx 1 2 3 4 5
1 Matt 1345 Car 56 Green
2 Chris 2345 Truck 93 Red
3 Laura 23255 Train 15 Blue
4 Ashley 92234 Bike 134 Yellow
5 Sam 7346 Plane 99 Purple
etc etc
I would like it to sort like this:
yx 1 2 3 4 5
1 Ashley 92234 Bike 134 Yellow
2 Laura 23255 Train 15 Blue
3 Sam 7346 Plane 99 Purple
4 Chris 2345 Truck 93 Red
5 Matt 1345 Car 56 Green
etc etc
As you can see, the second column is sorted in order largest to smallest. I've seen examples where people have zeropadded the scores, and added them into just one line, and then sorting that way... but that just seems extremely inefficient... there has to be a better way. Is that not how these array's work? Can you not move a line, for example, All of Y1 (X1, X2, X3, X4, X5) and insert before Y4, thus pushing Y2, Y3, to spot Y1, and Y2 giving what was line Y1 the spot line Y3 keeping all of it's X axis's?
I tell you.. it's so much easier doing an online leaderboard, than a local one let me tell ya.