Implement reverse sorting of groups #780
Replies: 7 comments 3 replies
-
I think this is what #747 was probably referring to. |
Beta Was this translation helpful? Give feedback.
-
This will be wonderful |
Beta Was this translation helpful? Give feedback.
-
Would love this! |
Beta Was this translation helpful? Give feedback.
-
For those who don't already know... Please, no more +1s or reminders on this (or other tickets). They are just a distraction and interruption. If you would like to express support for ideas, up-vote them. That's what raises their profile when prioritising time to spend on the project. |
Beta Was this translation helpful? Give feedback.
-
Also reported in #1347 |
Beta Was this translation helpful? Give feedback.
-
I'm delighted to announce that reverse sorting of groups has just been released on Tasks 3.7.0. |
Beta Was this translation helpful? Give feedback.
-
Can this be used on |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Background
The way that
group by
effectively works:sort by
options(The implementation is in a different order, but that describes the observable behaviour...)
This causes confusion if
group by
andsort by .... reverse
are using the same field.Example
For example:
This query
Can give this result - note the dates of the group names are ascending:
Proposal
I always intended to make reverse-grouping possible:
In the above, the sort becomes redundant as the grouping would be reversed anyway.
Implementation details
Currently there is no link between the Sort code and the Group code. I wasn't able to figure out a way sort the groups in anything other than alphabetical order.
Some refactoring behind the scenes, continuing the work I am doing for #664, will make this easier to implement. I cannot promise any time scales yet though.
Beta Was this translation helpful? Give feedback.
All reactions