I have a table that looks like this:
V1 V2 V3 V4
E
O W I
F A Z C
S D K L
I want sort across/horizontally so that it looks like this:
V1 V2 V3 V4
E
I O W
A C F Z
D K L S
I tried using sort
and order
, but I can only get it to sort vertically or reorder entire columns. Is it possible to sort horizontally for individual row?
Thanks.
Note: I don't see the similarities between my question and "Sort data by row". The solution is not even the same.