Hi community,
I am trying to figure out how to present the tickets in the specify order.
I.e. tickets set:
ticket_1, ticket_14, ticket_22
I would like to present the in the order
1. ticket_14
2. ticket_22
3. ticket_1
My JQL looks like this:
issuekey in (ticket_14, ticket_22, ticket_1)
the tickets presented are shuffled and not in the order I put them in brackets.
Q: I wonder if there is away to filter out the issekeys in the preferable order
Hi Anna,
In JQL ordering is managed by ORDER BY clause, when user does not specify any value for this clause, ORDER BY key DESC is used.
Sadly you cannot specify a group of defined values within ORDER BY clause, so you cannot achieve your desired presentation.
Further info on Advanced Searching page.
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.