Let's assume your question (Q1) is a grid with a numeric, rank or constant sum type setup?
Also assume the grid direction is columns.
If you setup a constructed list (SortedList) that uses the same parent list as the rows, it would look like this ...
AddSorted(Q1_c1,0)
This constructed list will capture the sorted descending order rows. So the 1st code stored would be the highest.
To display them on a question page, use the following ...
[%ListLabel(SortedList,1)%] - 1st highest row
[%ListLabel(SortedList,2)%] - 2nd highest row
[%ListLabel(SortedList,3)%] - 3rd highest row
[%ListLabel(SortedList,4)%] - 4th highest row
etc.
Use the SortedList in other questions if you want to display them in the sorted order.
Just tested it out, works fine.