Carlos E. R. wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Say I have a table with the movements of an account, sorted by date, most recent on top:
date concept total 2012-05-05 A 1000 2012-05-05 B 900 2012-05-04 C 800 2012-05-03 D 700
If I try to revert the order sorting by date on the first column, it may happen that the total column may be wrong, like this:
2012-05-03 D 700 2012-05-04 C 800 2012-05-05 A 1000 2012-05-05 B 900
The first column is correctly sorted by date, but the total column is wrong. What I want is an exact reversing of the order, not a sorting:
2012-05-03 D 700 2012-05-04 C 800 2012-05-05 B 900 2012-05-05 A 1000
But I have not found a "reverse" option in the menus. Did I miss it?
I don't know the official answer but there are at least two ways to solve it: (1) add an additional column that contains monotonically increasing integers. Reverse sort on that column. Then delete the column. (2) sort on both the date and another column In the case of your example of course you could just reverse sort on either of the other columns :) -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org