I have five numeric values that are are in no particular order going from left to right, like:
ROW 1: 5 15 19 10 25
ROW 2: 5 2 34 13 5
ROW 3: 15 19 16 1 13
I know how to sort these from left to right ascending on a row-by-row basis.
But... how can I sort multiple rows' worth of such data all at once, keeping each row's sort segrated from the other rows?
ROW 1: 5 15 19 10 25
ROW 2: 5 2 34 13 5
ROW 3: 15 19 16 1 13
I know how to sort these from left to right ascending on a row-by-row basis.
But... how can I sort multiple rows' worth of such data all at once, keeping each row's sort segrated from the other rows?