Hey all,
is there a possibility to create a tiered search statements in the issue collector like:
1st tier: is priority descending
2nd tier: creation date descending
3rd tier: last Update ascending
I have played with the JQL statements but with no sufficient outcome since it runs into errors when trying to integrate a 2nd tier.
Any suggestion?
Thanks in advance,
Sven
HI @Sven Anderson,
Have you tried below query
project = "project name" ORDER BY priority DESC, created DESC,updated ASC
thanks, that perfectly answers the question. I struggled around trying it with brackets without success.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sven Anderson,
I think you mean
ORDER BY priority, created, updated
in the end of your JQL.
Greetings,
Matthias
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.