Hello all. I need some help to sort my database. My database is formatted like this: A1,B1,C1,D1 A2,B2,C2,D2 A3,B3,C3,D3 and so on... Example: 345,nick1,23,56 333,nick2,22,3 200,nick3,4,3 I sort this with: set score [lsort -dict -decreasing [split [gets $scorefile]]] but I want to sort B1 and B2 and...