Hi, having trouble figuring out a good way to sort my jagged list, each base list contains 6 values. I need to sort the list based on the 2nd value.
Heres an example of what might be in the list
john 2 4 150 ...
sam 4 2 402 ...
kel 1 4 233 ...
ida 3 1 523 ...
I want to sort it so it looks like, the 2nd value being compared.
kel 1 4 233 ...
john 2 4 150 ...
ida 3 1 523 ...
sam 4 2 402 ...
Im kinda lost trying to figure out how to sort a jagged list, if someone can help id be more than greatful. Thanks!